Skip to content

Commit

Permalink
Show protected badge on detail
Browse files Browse the repository at this point in the history
  • Loading branch information
karimi committed Nov 27, 2023
1 parent a809307 commit 20467fb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions quasar_site/src/pages/MemberDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,17 @@
</q-item>
<q-item>
<q-item-section>
<q-item-label caption class="on-right">
<q-badge v-if="member.deprecated" outline color="negative"
<q-item-label caption class="on-right" >
<q-badge v-if="member.protected" outline color="warning" class="q-ma-sm"
>protected
</q-badge>
<q-badge v-if="member.deprecated" outline color="negative" class="q-ma-sm"
>deprecated in {{ member.deprecated }}
<q-tooltip
>Deprecated in version {{ member.deprecated }}</q-tooltip
>
</q-badge>
<q-badge v-if="member.obsolete" outline color="negative"
<q-badge v-if="member.obsolete" outline color="negative" class="q-ma-sm"
>obsolete: {{ member.obsolete }}
</q-badge>
</q-item-label>
Expand Down

0 comments on commit 20467fb

Please sign in to comment.