FlowFuse / node-red-dashboard

https://dashboard.flowfuse.com
Apache License 2.0
184 stars 46 forks source link

Breaking Change in Rendering v-textarea (and others components) with Node-RED Dashboard v1.16 #1261

Open andrea-tomassi opened 2 weeks ago

andrea-tomassi commented 2 weeks ago

Current Behavior

After upgrading to @flowfuse/node-red-dashboard v1.16, the v-textarea with v-model="form.body" template no longer works as it did in v1.14.

In version 1.16, the v-textarea appears as shown in the image below:

image

The same apply to many similar components.

Expected Behavior

In version 1.14, the widget displayed correctly as shown in the image below:

image

Steps To Reproduce

Use this widged code:

<template>
  <v-textarea v-model="form.body" label="Body"></v-textarea>
</template>

<script>
export default {
  data() {
    return {
      form: {
        body: ''
      }
    }
  }
}
</script>

Environment

Have you provided an initial effort estimate for this issue?

I have provided an initial effort estimate

joepavitt commented 1 week ago

Thanks for raising,I suspect, although haven't investigated in detail that some underlying Vuetify CSS has changed when we;'ve done our version bump which impacts this.