Skip to content

Commit

Permalink
refactor(@dpc-sdp/ripple-ui-core): ♻️ check for url or text
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingallday committed Oct 12, 2023
1 parent af34dce commit e0e89fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ripple-ui-core/src/components/list/RplList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const handleClick = (item: IRplListItemArray, index: number) => {
>
<template v-for="(item, index) of items" :key="index">
<li
v-if="item.url && item.text"
v-if="item.url || item.text"
:class="['rpl-list__item', itemClass ? itemClass : null]"
>
<RplTextLink
Expand Down

0 comments on commit e0e89fd

Please sign in to comment.