From c425074ae29036bdca678de99bea5e9ca03cbed8 Mon Sep 17 00:00:00 2001 From: fiftin Date: Tue, 25 Jun 2024 01:26:21 +0500 Subject: [PATCH] feat(schedule): change column order --- LICENSE | 2 +- web/src/views/project/Schedule.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 73094c99..d3e458db 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ The MIT License (MIT) -Copyright (c) 2014-2021 Castaway Labs LLC Copyright (c) 2021 Denis Gukov +Copyright (c) 2014-2021 Castaway Labs LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/web/src/views/project/Schedule.vue b/web/src/views/project/Schedule.vue index 6b2f2664..14e5e515 100644 --- a/web/src/views/project/Schedule.vue +++ b/web/src/views/project/Schedule.vue @@ -115,12 +115,12 @@ export default { methods: { getHeaders() { return [{ - text: this.$i18n.t('Cron'), - value: 'cron_format', - }, { text: this.$i18n.t('Template'), value: 'tpl_name', width: '100%', + }, { + text: this.$i18n.t('Cron'), + value: 'cron_format', }, { text: this.$i18n.t('actions'), value: 'actions',