mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
refactor(editor): Apply Prettier (no-changelog) (#4920)
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
<template>
|
||||
<span>
|
||||
<div class="push-connection-lost primary-color" v-if="!rootStore.pushConnectionActive">
|
||||
<n8n-tooltip placement="bottom-end" >
|
||||
<n8n-tooltip placement="bottom-end">
|
||||
<template #current>
|
||||
<div v-html="$locale.baseText('pushConnectionTracker.cannotConnectToServer')"></div>
|
||||
</template>
|
||||
<span>
|
||||
<font-awesome-icon icon="exclamation-triangle" /> {{ $locale.baseText('pushConnectionTracker.connectionLost') }}
|
||||
<font-awesome-icon icon="exclamation-triangle" />
|
||||
{{ $locale.baseText('pushConnectionTracker.connectionLost') }}
|
||||
</span>
|
||||
</n8n-tooltip>
|
||||
</div>
|
||||
@@ -15,16 +16,14 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { useRootStore } from "@/stores/n8nRootStore";
|
||||
import { mapStores } from "pinia";
|
||||
import Vue from "vue";
|
||||
import { useRootStore } from '@/stores/n8nRootStore';
|
||||
import { mapStores } from 'pinia';
|
||||
import Vue from 'vue';
|
||||
|
||||
export default Vue.extend({
|
||||
name: "PushConnectionTracker",
|
||||
name: 'PushConnectionTracker',
|
||||
computed: {
|
||||
...mapStores(
|
||||
useRootStore,
|
||||
),
|
||||
...mapStores(useRootStore),
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user