fix: lint

This commit is contained in:
Zack Spear
2024-01-30 16:34:07 -08:00
committed by Zack Spear
parent 93d0c08955
commit 41eaf4ef1b
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ const staticGuid = '1111-1111-5GDB-123412341234';
// const blacklistedGuid = '154B-00EE-0700-9B50CF819816';
const uptime = Date.now() - 60 * 60 * 1000; // 1 hour ago
const twentyDaysAgo = Date.now() - 20 * 24 * 60 * 60 * 1000; // 20 days ago
// const twentyDaysAgo = Date.now() - 20 * 24 * 60 * 60 * 1000; // 20 days ago
const ninetyDaysAgo = Date.now() - 90 * 24 * 60 * 60 * 1000; // 90 days ago
const twoDaysAgo = Date.now() - 2 * 24 * 60 * 60 * 1000; // 2 days ago
// const oneDayAgo = Date.now() - 24 * 60 * 60 * 1000; // 1 day ago

View File

@@ -237,8 +237,8 @@ onBeforeMount(() => {
<div v-if="actionButtons" class="flex flex-col xs:flex-row justify-end gap-8px">
<BrandButton
v-for="item in actionButtons"
:btn-style="item.btnStyle ?? undefined"
:key="item.text"
:btn-style="item.btnStyle ?? undefined"
:icon="item.icon"
:icon-right="item.iconRight"
:icon-right-hover-display="item.iconRightHoverDisplay"