mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
27 lines
696 B
Vue
27 lines
696 B
Vue
<!-- Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/ -->
|
|
|
|
<script setup lang="ts">
|
|
import CommonDialog from '#desktop/components/CommonDialog/CommonDialog.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<CommonDialog
|
|
name="connection-lost"
|
|
:header-title="__('Lost network connection')"
|
|
wrapper-tag="article"
|
|
hide-footer
|
|
no-close
|
|
global
|
|
fullscreen
|
|
>
|
|
<div class="flex justify-center">
|
|
<CommonIcon
|
|
name="wifi-off"
|
|
size="medium"
|
|
class="text-stone-200 dark:text-neutral-500"
|
|
animation="pulse"
|
|
/>
|
|
</div>
|
|
<CommonLabel size="large">{{ $t('Trying to reconnect…') }}</CommonLabel>
|
|
</CommonDialog>
|
|
</template>
|