querysub 0.696.0 → 0.697.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -248,6 +248,18 @@ export class UpdateButtons extends qreact.Component<{
|
|
|
248
248
|
<RenderGitRefInfo gitRef={ref} />
|
|
249
249
|
</div>)}
|
|
250
250
|
</button>
|
|
251
|
+
<button
|
|
252
|
+
className={buttonStyle.hsl(45, 85, 82)}
|
|
253
|
+
disabled={this.state.isDeploying}
|
|
254
|
+
title="Deploys every outdated service straight away, without asking. Same overlap as the confirmed deploy — the old instances keep running before shutting down"
|
|
255
|
+
onClick={() => {
|
|
256
|
+
this.deployAll(outdatedServices, gitInfo.latestRef);
|
|
257
|
+
}}
|
|
258
|
+
>
|
|
259
|
+
<div>
|
|
260
|
+
{bigEmoji("⚡")} <span>{this.state.isDeploying && "⏳ Deploying..." || `Deploy All Now (${outdatedServices.length})`}</span>
|
|
261
|
+
</div>
|
|
262
|
+
</button>
|
|
251
263
|
</>}
|
|
252
264
|
</>;
|
|
253
265
|
}
|