3939 @update:model-value =" modelValueUpdated"
4040 />
4141 </v-card-item >
42+ <v-card-item class =" pt-0 pb-0" >
43+ <v-switch
44+ v-model =" showOnlyJobName"
45+ label =" Show only job name"
46+ color =" success"
47+ hide-details
48+ @update:model-value =" modelValueUpdated"
49+ />
50+ </v-card-item >
4251 <v-card-item class =" pt-0 pb-0" >
4352 <v-btn
4453 :icon =" themeIcon"
@@ -99,7 +108,8 @@ export default {
99108 enableMaxIdleTimeOptimization: preferences .enableMaxIdleTimeOptimization ,
100109 themeInstance,
101110 isDirty: false ,
102- showBuildsDueToTriggeredEvents: getShowBuildsDueToTriggeredEvents ()
111+ showBuildsDueToTriggeredEvents: getShowBuildsDueToTriggeredEvents (),
112+ showOnlyJobName: preferences .showOnlyJobName
103113 };
104114 },
105115 computed: {
@@ -130,6 +140,7 @@ export default {
130140 preferences .maxIdleTime = this .maxIdleTime ;
131141 preferences .theme = this .themeInstance .global .name ;
132142 preferences .showBuildsDueToTriggeredEvents = this .showBuildsDueToTriggeredEvents ;
143+ preferences .showOnlyJobName = this .showOnlyJobName ;
133144
134145 this .isDirty = false ;
135146 },
@@ -138,6 +149,7 @@ export default {
138149 this .showHealthyBuilds === preferences .showHealthyBuilds &&
139150 this .maxIdleTime === preferences .maxIdleTime &&
140151 this .enableMaxIdleTimeOptimization === preferences .enableMaxIdleTimeOptimization &&
152+ this .showOnlyJobName === preferences .showOnlyJobName &&
141153 this .hasSameShowBuildsDueToTriggeredEvents ());
142154 },
143155 hasSameShowBuildsDueToTriggeredEvents () {
0 commit comments