@@ -171,8 +171,8 @@
border-radius: 5px;
font-weight: 600;
font-size: 13Px;
- height: max(30px, 28Px);
- line-height: max(30px, 28Px);
+ height: max(34px, 32Px);
+ line-height: max(34px, 32Px);
flex: 1;
text-align: center;
cursor: pointer;
@@ -126,7 +126,8 @@ export default defineComponent({
if (props.showPath) {
return names.join(' / ');
} else {
- const lastName = names.pop();
+ const lastName = names[names.length - 1];
+ console.log(lastName, 'last names');
return lastName;
}
});