Skip to content

Commit

Permalink
Revert "feat: validate commands (#591)"
Browse files Browse the repository at this point in the history
This reverts commit 6432865.
  • Loading branch information
solvedDev committed Aug 31, 2022
1 parent 6432865 commit 75d4228
Show file tree
Hide file tree
Showing 18 changed files with 2,995 additions and 1,123 deletions.
26 changes: 26 additions & 0 deletions src/components/Editors/FunctionValidator/Error.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<template>
<p class="error-info">
<i class="mdi mdi-alert-octagon mr-1-2"></i> {{ alertText }}
</p>
</template>

<script>
export default {
name: 'Error',
props: {
alertText: String,
},
}
</script>

<style scoped>
.mr-1-2 {
margin-right: 0.5rem !important;
}
.error-info {
background: var(--v-error-base);
padding: 0.4rem;
border-radius: 0.4rem;
}
</style>
Loading

0 comments on commit 75d4228

Please sign in to comment.