We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a70a5 commit 1731160Copy full SHA for 1731160
site/src/pages/WorkspacePage/WorkspaceActions/WorkspaceActions.tsx
@@ -173,6 +173,7 @@ export const WorkspaceActions: FC<WorkspaceActionsProps> = ({
173
)}
174
175
{!canBeUpdated &&
176
+ !isUpdating &&
177
workspace.template_require_active_version &&
178
buttonMapping.start}
179
@@ -244,11 +245,7 @@ function getTooltipText(
244
245
return "";
246
}
247
- if (
248
- !mustUpdate &&
249
- canChangeVersions &&
250
- workspace.template_require_active_version
251
- ) {
+ if (!mustUpdate && canChangeVersions) {
252
return "This template requires automatic updates on workspace startup, but template administrators can ignore this policy.";
253
254
0 commit comments