Skip to content

Commit c259ee9

Browse files
committed
fix(front): fix service accounts spinner size
1 parent 56ea86f commit c259ee9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

front/assets/js/service_accounts/components/CreateServiceAccount.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export const CreateServiceAccount = ({ isOpen, onClose, onCreated }: CreateServi
122122
>
123123
{loading ? (
124124
<span className="flex items-center">
125-
<toolbox.Asset path="images/spinner.svg" className="w1 h1 mr2"/>
125+
<toolbox.Asset path="images/spinner.svg" className="mr2"/>
126126
Creating...
127127
</span>
128128
) : (

front/assets/js/service_accounts/components/EditServiceAccount.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const EditServiceAccount = ({
139139
>
140140
{loading ? (
141141
<span className="flex items-center">
142-
<toolbox.Asset path="images/spinner.svg" className="w1 h1 mr2"/>
142+
<toolbox.Asset path="images/spinner.svg" className="mr2"/>
143143
Saving...
144144
</span>
145145
) : (

front/assets/js/service_accounts/components/ServiceAccountsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export const ServiceAccountsList = ({
164164
>
165165
{loading ? (
166166
<span className="flex items-center">
167-
<toolbox.Asset path="images/spinner.svg" className="w1 h1 mr2"/>
167+
<toolbox.Asset path="images/spinner.svg" className="mr2"/>
168168
Loading...
169169
</span>
170170
) : (

0 commit comments

Comments
 (0)