Skip to content

Commit

Permalink
remove unnecessary prop (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
0oM4R authored Jun 8, 2023
1 parent 7206ac9 commit 554b2bb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/dashboard/src/portal/components/NodeDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ export default class NodeDetails extends Vue {
location: { country: string; city: string; long: string; lat: string };
farm: { id: string; name: string; farmCertType: string; pubIps: string };
};
@Prop({ required: true }) byteToGB!: any;
loading = false;
}
</script>
2 changes: 1 addition & 1 deletion packages/dashboard/src/portal/components/NodesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<strong style="color: #f44336">Failed to retrieve Node details</strong>
</td>
<td :colspan="headers.length" v-else>
<NodeDetails :node="item" :convert="convert" />
<NodeDetails :node="item" />
</td>
</template>
</v-data-table>
Expand Down

0 comments on commit 554b2bb

Please sign in to comment.