Skip to content

Commit

Permalink
Merge pull request #698 from madeindjs/WF-130
Browse files Browse the repository at this point in the history
fix(ui): add `min-width` to `CoreTimer` - WF-130
  • Loading branch information
ramedina86 authored Dec 16, 2024
2 parents 7c1bf24 + 507c48b commit cbe876f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/src/components/core/other/CoreTimer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ watch(isTickHandlerSet, async (newIsTickHandlerSet) => {
});
let animationTriggeredTime: number = 0;
let activeTimerId: number = null;
let activeTimerId: ReturnType<typeof setTimeout> = null;
function clearActiveTimer() {
clearTimeout(activeTimerId);
Expand Down Expand Up @@ -134,6 +134,7 @@ onMounted(() => {
<style scoped>
.CoreTimer {
width: 12px;
min-width: 12px;
height: 12px;
background: var(--accentColor);
border-radius: 50%;
Expand Down

0 comments on commit cbe876f

Please sign in to comment.