Skip to content

Commit

Permalink
lint: fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed May 23, 2024
1 parent fa30615 commit 62ebd87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/instance-info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ i18n.ts._delivery._type[suspendedState] }}
</template>
</MkKeyValue>
<MkButton v-if="suspendedState === 'none'" :disabled="!instance" @click="stopDelivery" danger>{{ i18n.ts._delivery.stop }}</MkButton>
<MkButton v-if="suspendedState === 'none'" :disabled="!instance" danger @click="stopDelivery">{{ i18n.ts._delivery.stop }}</MkButton>
<MkButton v-if="suspendedState !== 'none'" :disabled="!instance" @click="resumeDelivery">{{ i18n.ts._delivery.resume }}</MkButton>
<MkSwitch v-model="isBlocked" :disabled="!meta || !instance" @update:modelValue="toggleBlock">{{ i18n.ts.blockThisInstance }}</MkSwitch>
<MkSwitch v-model="isSilenced" :disabled="!meta || !instance" @update:modelValue="toggleSilenced">{{ i18n.ts.silenceThisInstance }}</MkSwitch>
Expand Down

0 comments on commit 62ebd87

Please sign in to comment.