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 76019b2 commit a5448c9Copy full SHA for a5448c9
demo/client/frontend/src/components/LedgerHistory.vue
@@ -53,6 +53,7 @@ SPDX-License-Identifier: Apache-2.0
53
bordered
54
offset-y="18"
55
offset-x="18"
56
+ :value="isLocked(item.func)"
57
>
58
<v-chip
59
class="ma-2"
@@ -146,6 +147,11 @@ export default {
146
147
},
148
149
methods: {
150
+ isLocked(f) {
151
+ const publicData = ["publishAssignmentResults"];
152
+ return !publicData.includes(f);
153
+ },
154
+
155
...mapActions({
156
fetchUsers: "users/fetchUsers",
157
fetchTransactions: "ledger/fetchTransactions"
0 commit comments