Ver Fonte

fix: Runjob duplicate @click and calculated width comments

Owen Diffey há 3 anos atrás
pai
commit
9721a6696b

+ 3 - 2
frontend/src/components/AdvancedTable.vue

@@ -984,6 +984,7 @@ export default {
 					}
 			});
 			calculatedWidth = Math.floor(
+				// max-width of table is 1880px
 				(Math.min(1880, document.body.clientWidth) - calculatedWidth) /
 					(noWidthCount - 1)
 			);
@@ -1000,10 +1001,10 @@ export default {
 						orderedColumn.width = orderedColumn.calculatedWidth =
 							Math.min(
 								Math.max(
-									orderedColumn.minWidth || 100,
+									orderedColumn.minWidth || 100, // fallback 100px min width
 									calculatedWidth
 								),
-								orderedColumn.maxWidth || 1000
+								orderedColumn.maxWidth || 1000 // fallback 1000px max width
 							);
 					}
 				}

+ 0 - 1
frontend/src/components/RunJobDropdown.vue

@@ -38,7 +38,6 @@
 				>
 					<button class="nav-item button" :title="job.name">
 						<i
-							@click="runJob(job)"
 							class="material-icons icon-with-button"
 							content="Run Job"
 							v-tippy