Skip to content

Commit

Permalink
1,433rd Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Apr 23, 2024
1 parent 10f896b commit a0c2348
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/src/components/spinner/Spinner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ const spinner = ref();
</script>

<template>
<div ref="spinnerWrapper" v-bind="$attrs" :class="{ 'size-8': !$attrs.hasOwnProperty('class') }">
<div
ref="spinnerWrapper"
v-bind="$attrs"
:class="{ 'size-8': !Object.prototype.hasOwnProperty.call($attrs, 'class') }"
>
<div
ref="spinner"
class="spinner"
Expand Down

0 comments on commit a0c2348

Please sign in to comment.