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.
2 parents 0624c17 + 8b2c17a commit 45330c5Copy full SHA for 45330c5
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