Skip to content

Commit

Permalink
add unit hint for time limit and memory limit
Browse files Browse the repository at this point in the history
  • Loading branch information
zema1 committed Nov 26, 2018
1 parent cca9872 commit 748b326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/admin/views/problem/Problem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
</el-row>
<el-row :gutter="20">
<el-col :span="8">
<el-form-item :label="$t('m.Time_Limit')" required>
<el-form-item :label="$t('m.Time_Limit') + ' (ms)' " required>
<el-input type="Number" :placeholder="$t('m.Time_Limit')" v-model="problem.time_limit"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item :label="$t('m.Memory_limit')" required>
<el-form-item :label="$t('m.Memory_limit') + ' (MB)' " required>
<el-input type="Number" :placeholder="$t('m.Memory_limit')" v-model="problem.memory_limit"></el-input>
</el-form-item>
</el-col>
Expand Down

0 comments on commit 748b326

Please sign in to comment.