Remove disabled propertie from presentation links #14735 (#14867)

This commit is contained in:
Jonathan Schneider
2022-08-05 20:53:13 +02:00
committed by GitHub
parent 1ebda96a69
commit 479b65526c

View File

@@ -6,7 +6,6 @@
class="action"
:class="[link.type]"
:secondary="link.type !== 'primary'"
:disabled="disabled"
:icon="!link.label"
:href="link.href"
:to="link.to"
@@ -31,10 +30,6 @@ type Link = {
export default defineComponent({
props: {
disabled: {
type: Boolean,
default: false,
},
links: {
type: Array as PropType<Link[]>,
default: null,