Fix frontend

This commit is contained in:
rxdn 2024-07-20 23:41:45 +01:00
parent 618c26acbc
commit ab733dde8d
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<ConfirmationModal icon="fas fa-floppy-disk" on:confirm={() => dispatch("confirm", data)} on:cancel={() => dispatch("cancel", {})}>
<span slot="title">Tag Editor</span>
<div slot="body" class="body-wrapper">
<div class="row"">
<div class="row">
<Input col4 label="Tag ID" placeholder="docs" bind:value={data.id}
tooltipText='If the command is "/tag docs", then the ID is "docs"'/>
<Checkbox col2 label="Create Custom Command Alias" bind:value={data.use_guild_command}

View File

@ -168,7 +168,7 @@
if (!isPremium) {
for (const id in tags) {
tag[id].use_guild_commands = false;
tags[id].use_guild_commands = false;
}
}
}