@privateaim/client-vue 0.8.26 → 0.8.27
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/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -12
package/dist/index.mjs
CHANGED
|
@@ -5328,7 +5328,7 @@ var _sfc_main$r = defineComponent({
|
|
|
5328
5328
|
return 0;
|
|
5329
5329
|
});
|
|
5330
5330
|
const buildProgress = computed(()=>{
|
|
5331
|
-
if (entity.value.build_status === ProcessStatus.
|
|
5331
|
+
if (entity.value.build_status === ProcessStatus.EXECUTED) {
|
|
5332
5332
|
return 100;
|
|
5333
5333
|
}
|
|
5334
5334
|
if (entity.value.build_status === ProcessStatus.STARTED) {
|
|
@@ -5340,7 +5340,7 @@ var _sfc_main$r = defineComponent({
|
|
|
5340
5340
|
return 0;
|
|
5341
5341
|
});
|
|
5342
5342
|
const runProgress = computed(()=>{
|
|
5343
|
-
if (entity.value.execution_status === ProcessStatus.
|
|
5343
|
+
if (entity.value.execution_status === ProcessStatus.EXECUTED) {
|
|
5344
5344
|
return 100;
|
|
5345
5345
|
}
|
|
5346
5346
|
if (entity.value.execution_status === ProcessStatus.STARTED) {
|
|
@@ -5359,7 +5359,7 @@ var _sfc_main$r = defineComponent({
|
|
|
5359
5359
|
return Math.floor(total / 3);
|
|
5360
5360
|
});
|
|
5361
5361
|
const bgClazz = computed(()=>{
|
|
5362
|
-
if (entity.value.execution_status === ProcessStatus.
|
|
5362
|
+
if (entity.value.execution_status === ProcessStatus.EXECUTED) {
|
|
5363
5363
|
return 'bg-success';
|
|
5364
5364
|
}
|
|
5365
5365
|
return 'bg-dark';
|