Skip to content

Commit

Permalink
drop obsolete prop
Browse files Browse the repository at this point in the history
  • Loading branch information
petersutter committed Jun 3, 2024
1 parent a8e3c01 commit c075f66
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions frontend/src/components/GUsernamePasswordListTile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SPDX-License-Identifier: Apache-2.0
-->

<template>
<div v-if="showCredentials || showNotAvailablePlaceholder">
<div v-if="showCredentials">
<template v-if="showCredentials">
<g-list-item v-if="username">
<template #prepend>
Expand Down Expand Up @@ -50,7 +50,7 @@ SPDX-License-Identifier: Apache-2.0
</template>
</g-list-item>
</template>
<g-list-item v-else-if="showNotAvailablePlaceholder">
<g-list-item v-else>
<template #prepend>
<v-icon
color="primary"
Expand Down Expand Up @@ -110,10 +110,6 @@ export default {
password: {
type: String,
},
showNotAvailablePlaceholder: {
type: Boolean,
default: true,
},
},
data () {
return {
Expand Down

0 comments on commit c075f66

Please sign in to comment.