@processmaker/screen-builder 2.78.0 → 2.78.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/screen-builder",
3
- "version": "2.78.0",
3
+ "version": "2.78.2",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -3,7 +3,7 @@
3
3
  <div v-for="event in emptyStartEvents" :key="event.id" class="card">
4
4
  <div class="card-body">
5
5
  <div class="d-flex justify-content-between">
6
- <div>
6
+ <div style="width: 80%">
7
7
  <span v-uni-id="event.id.toString()">{{ transformedName }}</span>
8
8
  <span v-if="process.startEvents.length > 1">
9
9
  : {{ event.name }}
@@ -115,6 +115,7 @@ export default {
115
115
  .then((response) => {
116
116
  this.spin = 0;
117
117
  const instance = response.data;
118
+ this.$cookies.set("fromTriggerStartEvent", true, "1min");
118
119
  window.location = `/requests/${instance.id}?fromRedirect=true`;
119
120
  })
120
121
  .catch((err) => {
@@ -9,12 +9,13 @@
9
9
  <b-container fluid>
10
10
  <b-card-group>
11
11
  <template v-for="(process, id) in category">
12
- <ProcessCard
13
- v-if="hasEmptyStartEvents(process)"
14
- :key="`process-${id}`"
15
- :filter="filter"
16
- :process="process"
17
- />
12
+ <b-col :key="`process-${id}`" cols="6">
13
+ <ProcessCard
14
+ v-if="hasEmptyStartEvents(process)"
15
+ :filter="filter"
16
+ :process="process"
17
+ />
18
+ </b-col>
18
19
  </template>
19
20
  </b-card-group>
20
21
  </b-container>