diff --git a/src/components/cards/dashboard/OutputsCard.vue b/src/components/cards/dashboard/OutputsCard.vue
new file mode 100644
index 0000000000..6843a4a096
--- /dev/null
+++ b/src/components/cards/dashboard/OutputsCard.vue
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/inputs/InputTemperature.vue b/src/components/inputs/InputTemperature.vue
index f54cee1656..6d11706c0d 100644
--- a/src/components/inputs/InputTemperature.vue
+++ b/src/components/inputs/InputTemperature.vue
@@ -1,9 +1,9 @@
-
diff --git a/src/components/inputs/inputConsoleCommand.vue b/src/components/inputs/inputConsoleCommand.vue
index d37fe5b891..80cc4f4cb9 100644
--- a/src/components/inputs/inputConsoleCommand.vue
+++ b/src/components/inputs/inputConsoleCommand.vue
@@ -6,7 +6,8 @@
:items="history"
class="ma-4"
clearable
- solo
+ outlined
+ single-line
dense
hide-details
placeholder="type 'help' for available commands"
@@ -32,7 +33,7 @@ export default class InputConsoleCommand extends Vue {
@Watch('value')
onValueChange (val: string) {
if (val) {
- this.newValue = val.toUpperCase()
+ this.newValue = val
const input = this.$refs.input as HTMLElement
input.focus()
} else {
diff --git a/src/components/widgets/ExtruderMovesWidget.vue b/src/components/widgets/ExtruderMovesWidget.vue
index d6b5746e2c..f956ff0097 100644
--- a/src/components/widgets/ExtruderMovesWidget.vue
+++ b/src/components/widgets/ExtruderMovesWidget.vue
@@ -27,21 +27,23 @@
v-model="extrudeLength"
:disabled="!klippyConnected"
@focus="$event.target.select()"
- solo
+ outlined
dense
hide-details
+ single-line
label="Extrude Length"
type="number"
suffix="mm"
- class="mb-1">
+ class="mb-2">
@@ -88,5 +90,13 @@ export default class ToolheadMovesWidget extends Mixins(UtilsMixin) {
}
-
diff --git a/src/components/widgets/FansWidget.vue b/src/components/widgets/FansWidget.vue
index 13462c344d..5c391e0ba3 100644
--- a/src/components/widgets/FansWidget.vue
+++ b/src/components/widgets/FansWidget.vue
@@ -1,11 +1,12 @@
-
+