From 566a243e07a3bf7a9fbe5734fbbaf4cc2967381d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=81=E7=AB=AD=E5=8A=9B?= Date: Mon, 11 Nov 2024 18:17:13 +0800 Subject: [PATCH] Fixing Docker import errors (#101) Fix docker cli import not including title. Fix docker cli import containing comments. Fix docker cli import handling config volume errors. Optimise new tag fetching. --- src/App.vue | 10 - src/assets/scss/common/_input.scss | 11 +- src/components/AppSetting/ComposeConfig.vue | 336 ++++++--------- src/components/Apps/AppCard.vue | 10 +- src/components/Apps/AppSection.vue | 10 +- src/components/forms/ImportPanel.vue | 454 ++++++++++---------- src/components/forms/InputGroup.vue | 135 +++--- src/mixins/app/Business_ShowNewAppTag.js | 2 +- 8 files changed, 432 insertions(+), 536 deletions(-) diff --git a/src/App.vue b/src/App.vue index ff9aa901..e3d893ca 100644 --- a/src/App.vue +++ b/src/App.vue @@ -67,16 +67,6 @@ export default { beforeCreate() { }, created() { - console.log(` -MicroApp is created! - -┌─┐┌─┐┌─┐┌─┐┌─┐┌─┐ ┌─┐┌─┐┌─┐ ┬ ┬┬ -│ ├─┤└─┐├─┤│ │└─┐───├─┤├─┘├─┘───│ ││ -└─┘┴ ┴└─┘┴ ┴└─┘└─┘ ┴ ┴┴ ┴ └─┘┴ - --- Made by IceWhale with YOU -- -`, `font-family: monospace`); - // this.$buefy.config.setOptions(customIconConfig) ConfigProgrammatic.setOptions(customIconConfig); }, diff --git a/src/assets/scss/common/_input.scss b/src/assets/scss/common/_input.scss index 2449b7ff..5f1a5bc2 100644 --- a/src/assets/scss/common/_input.scss +++ b/src/assets/scss/common/_input.scss @@ -47,16 +47,7 @@ &::placeholder { color: hsla(208, 16%, 72%, 1); } - - &[type="password"] { - //font-family: "Courier New", monospace; - //-webkit-text-security: disc; - //-moz-text-security: disc; - //text-security: disc; - //font-weight: bold; - //text-shadow: white 0 0 4px; - } - + &.is-success { border: 1px solid hsla(208, 16%, 72%, 1); box-shadow: none; diff --git a/src/components/AppSetting/ComposeConfig.vue b/src/components/AppSetting/ComposeConfig.vue index 217f6bdd..1b2d4c0b 100644 --- a/src/components/AppSetting/ComposeConfig.vue +++ b/src/components/AppSetting/ComposeConfig.vue @@ -1,83 +1,47 @@