We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf6391 commit b88da9fCopy full SHA for b88da9f
src/components/problem/list.vue
@@ -159,7 +159,6 @@ export default {
159
} else {
160
color += 'color-regular-text';
161
}
162
- x.pid = (<div class={color}>{x.pid}</div>);
163
if (!x.enabled) {
164
x.title = (
165
<div>
@@ -170,6 +169,7 @@ export default {
170
169
171
x.title = (<router-link to={'/problem/' + String(x.pid)} class={color + ' text-normal'}>{ x.title }</router-link>);
172
+ x.pid = (<div class={color}>{x.pid}</div>);
173
x.score = (<div class={color + ' text-extra-bold'}>{x.score >= 0 ? x.score : '-'}</div>);
174
175
x.tag = (<listTag tags={ x.tags }></listTag>);
0 commit comments