Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Jan 8, 2025
1 parent 3c94611 commit 8270a85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/boot/master.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export async function masterMain() {
}

bootLogger.info(
`mode: [disableClustering: ${envOption.disableClustering}, onlyServer: ${envOption.onlyServer}, onlyQueue: ${envOption.onlyQueue}]`
`mode: [disableClustering: ${envOption.disableClustering}, onlyServer: ${envOption.onlyServer}, onlyQueue: ${envOption.onlyQueue}]`,
);

if (!envOption.disableClustering) {
Expand Down
10 changes: 7 additions & 3 deletions packages/frontend/src/components/MkPostFormAttaches.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</template>
</Sortable>
<p :class="[$style.remain, {
[$style.exceeded]: props.modelValue.length > 16,
}]">{{ 16 - props.modelValue.length }}/16</p>
<p
:class="[$style.remain, {
[$style.exceeded]: props.modelValue.length > 16,
}]"
>
{{ 16 - props.modelValue.length }}/16
</p>
</div>
</template>

Expand Down

0 comments on commit 8270a85

Please sign in to comment.