diff --git a/Makefile b/Makefile index 16eb80718..7f2680a2d 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,9 @@ db_migrate: db_seed: RAILS_ENV=$(RAILS_ENV) bundle exec rails db:seed +db_reset: + RAILS_ENV=$(RAILS_ENV) bundle exec rails db:reset + db: RAILS_ENV=$(RAILS_ENV) bundle exec rails db:chatwoot_prepare @@ -49,4 +52,4 @@ debug_worker: docker: docker build -t $(APP_NAME) -f ./docker/Dockerfile . -.PHONY: setup db_create db_migrate db_seed db console server burn docker run force_run debug debug_worker +.PHONY: setup db_create db_migrate db_seed db_reset db console server burn docker run force_run debug debug_worker diff --git a/app/javascript/dashboard/assets/scss/widgets/_base.scss b/app/javascript/dashboard/assets/scss/widgets/_base.scss index e64231dfc..1ebcef53c 100644 --- a/app/javascript/dashboard/assets/scss/widgets/_base.scss +++ b/app/javascript/dashboard/assets/scss/widgets/_base.scss @@ -63,12 +63,12 @@ input:focus { } // Inputs -input[type='text'], -input[type='number'], -input[type='password'], -input[type='date'], -input[type='email'], -input[type='url'] { +input[type='text']:not(.reset-base), +input[type='number']:not(.reset-base), +input[type='password']:not(.reset-base), +input[type='date']:not(.reset-base), +input[type='email']:not(.reset-base), +input[type='url']:not(.reset-base) { @apply block box-border w-full transition-colors focus:border-woot-500 dark:focus:border-woot-600 duration-[0.25s] ease-[ease-in-out] h-10 appearance-none mx-0 mt-0 mb-4 p-2 rounded-md text-base font-normal bg-white dark:bg-slate-900 focus:bg-white focus:dark:bg-slate-900 text-slate-900 dark:text-slate-100 border border-solid border-slate-200 dark:border-slate-600; &[disabled] { diff --git a/app/javascript/dashboard/components/widgets/conversation/components/SLACardLabel.vue b/app/javascript/dashboard/components/widgets/conversation/components/SLACardLabel.vue index 012abaee0..e5514910c 100644 --- a/app/javascript/dashboard/components/widgets/conversation/components/SLACardLabel.vue +++ b/app/javascript/dashboard/components/widgets/conversation/components/SLACardLabel.vue @@ -1,12 +1,12 @@