| Lines 21-27
          
      
      
        Link Here | 
        
          | 21 |                 <i class="fa fa-fw fa-check"></i> | 21 |                 <i class="fa fa-fw fa-check"></i> | 
        
          | 22 |                 <span v-html="confirmation.accept_label"></span> | 22 |                 <span v-html="confirmation.accept_label"></span> | 
        
          | 23 |             </button> | 23 |             </button> | 
          
            
              | 24 |             <button id="close_modal" class="deny" @click="removeMessages"> | 24 |             <button | 
            
              |  |  | 25 |                 id="close_modal" | 
            
              | 26 |                 class="deny" | 
            
              | 27 |                 @click="removeConfirmationMessages" | 
            
              | 28 |             > | 
        
          | 25 |                 <i class="fa fa-fw fa-remove"></i> | 29 |                 <i class="fa fa-fw fa-remove"></i> | 
        
          | 26 |                 <span v-html="confirmation.cancel_label"></span> | 30 |                 <span v-html="confirmation.cancel_label"></span> | 
        
          | 27 |             </button> | 31 |             </button> | 
  
    | Lines 52-58
          export default {
      
      
        Link Here | 
        
          | 52 |             is_submitting, | 56 |             is_submitting, | 
        
          | 53 |             is_loading, | 57 |             is_loading, | 
        
          | 54 |         } = storeToRefs(mainStore) | 58 |         } = storeToRefs(mainStore) | 
          
            
              | 55 |         const { removeMessages } = mainStore | 59 |         const { removeMessages, removeConfirmationMessages } = mainStore | 
        
          | 56 |         return { | 60 |         return { | 
        
          | 57 |             message, | 61 |             message, | 
        
          | 58 |             error, | 62 |             error, | 
  
    | Lines 62-67
          export default {
      
      
        Link Here | 
        
          | 62 |             is_submitting, | 66 |             is_submitting, | 
        
          | 63 |             is_loading, | 67 |             is_loading, | 
        
          | 64 |             removeMessages, | 68 |             removeMessages, | 
            
              |  |  | 69 |             removeConfirmationMessages, | 
        
          | 65 |         } | 70 |         } | 
        
          | 66 |     }, | 71 |     }, | 
        
          | 67 | } | 72 | } |