Skip to content

Fix : Hydration error by improving the HTML Specifications #482

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
"optionalDependencies": {
"esbuild-linux-64": "^0.15.18"
}
}
}
2 changes: 1 addition & 1 deletion src/components/ContextMenu/ContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ export default {
},
},
}
</script>
</script>
2 changes: 1 addition & 1 deletion src/components/Panels/PropertiesPanel/PropertiesPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ onMounted(() => {
// checks for which type of properties panel to show
setInterval(showPropertiesPanel, 100)
})
</script>
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,4 @@ onMounted(() => {
// checks for which type of properties panel to show
setInterval(showPropertiesPanel, 100)
})
</script>
</script>
28 changes: 16 additions & 12 deletions v0/src/components/Extra.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,22 @@
</div>
<div style="text-align: center">
<table class="tb-manual-table">
<tr id="tb-manual-table-labels">
<th>LABELS</th>
</tr>
<tr id="tb-manual-table-bitwidths">
<td>Bitwidth</td>
</tr>
<tr id="tb-manual-table-current-case">
<td>Current Case</td>
</tr>
<tr id="tb-manual-table-test-result">
<td>Result</td>
</tr>
<thead>
<tr id="tb-manual-table-labels">
<th>LABELS</th>
</tr>
</thead>
<tbody>
<tr id="tb-manual-table-bitwidths">
<td>Bitwidth</td>
</tr>
<tr id="tb-manual-table-current-case">
<td>Current Case</td>
</tr>
<tr id="tb-manual-table-test-result">
<td>Result</td>
</tr>
</tbody>
</table>
</div>
<div style="display: table; margin-top: 20px; margin-left: 8px">
Expand Down
11 changes: 9 additions & 2 deletions v0/src/components/Panels/Shared/InputGroups.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p>
<div class="input-group-wrapper">
<span>{{ propertyName }}</span>
<div class="input-group">
<div class="input-group-prepend">
Expand Down Expand Up @@ -33,7 +33,7 @@
</button>
</div>
</div>
</p>
</div>
</template>

<script lang="ts" setup>
Expand Down Expand Up @@ -79,3 +79,10 @@ function decreaseValue() {
ele.dispatchEvent(e)
}
</script>

<style scoped>
.input-group-wrapper {
margin-block-start: 1em;
margin-block-end: 1em;
}
</style>