diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index a2893980..517dc775 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -1,91 +1,108 @@
-name: 🐞 Bug
+name: 🐞 Bug Report
description: Create a report to help us improve
-title: "🐞 Bug"
+title: "🐞 Bug: [Title]"
labels: ["🐞 bug", "pending triage"]
+
body:
-- type: checkboxes
- attributes:
- label: Is there an existing issue for this?
- description: Please search to see if an issue already exists for the bug you encountered
- options:
- - label: I have searched the existing issues
+ - type: checkboxes
+ attributes:
+ label: Is there an existing issue for this?
+ description: Please search to see if an issue already exists for the bug you encountered.
+ options:
+ - label: I have searched the existing issues.
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Describe the bug
+ description: A clear and concise description of what the bug is.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Steps to Reproduce
+ description: Steps to reproduce the behavior.
+ placeholder: |
+ 1. Go to '...'
+ 2. Click on '...'
+ 3. Scroll down to '...'
+ 4. See error.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Expected Behavior
+ description: A clear and concise description of what you expected to happen.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Screenshots
+ description: |
+ If applicable, add screenshots to help explain your problem.
+ Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
+ validations:
+ required: false
+
+ - type: dropdown
+ attributes:
+ label: Is the faced issue/bug related to the Vue simulator?
+ description: Describe the issue you have faced in detail.
+ options:
+ - 'Yes'
+ - 'No'
+ validations:
required: true
-- type: textarea
- attributes:
- label: Describe the bug
- description: A clear and concise description of what the bug is
- validations:
- required: true
-- type: textarea
- attributes:
- label: Steps To Reproduce
- description: Steps to reproduce the behavior
- placeholder: |
- 1. Go to'...'
- 2. Click on'...'
- 3. Scroll down to'...'
- 4. See error
- validations:
- required: true
-- type: textarea
- attributes:
- label: Expected Behavior
- description: A clear and concise description of what you expected to happen
- validations:
- required: true
-- type: textarea
- attributes:
- label: Screenshots
- description: |
- If applicable, add screenshots to help explain your problem
- Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in
- validations:
- required: false
-- type: dropdown
- attributes:
- label: Is faced issue/bug related to vue simulator?
- description: A clear and concise description of what you have faced issue with
- validations:
- required: true
-- type: dropdown
- attributes:
- label: Used vue simulator with or without backend
- description: A clear and concise description of how you used the simulator
- validations:
- required: false
-- type: dropdown
- attributes:
- label: Is bug is only in dev server or build or in both?
- description: A clear and concise description of how where the issue/bug is
- validations:
- required: false
-- type: textarea
- attributes:
- label: Device Information [optional]
- description: |
- examples:
- - **OS**: Ubuntu 20.04
- - **Browser**: chrome
- - **version**: 22
- value: |
- - OS:
- - Browser:
- - version:
- render: markdown
- validations:
- required: false
-- type: input
- attributes:
- label: Additional context
- description: Add any other context about the problem here
- validations:
- required: false
-- type: dropdown
- attributes:
- label: Are you working on this issue?
- options:
- - 'Yes'
- - 'No'
- validations:
- required: true
\ No newline at end of file
+ - type: dropdown
+ attributes:
+ label: Used Vue simulator with or without backend?
+ description: Provide a clear and concise description of how you used the simulator.
+ options:
+ - 'With Backend'
+ - 'Without Backend'
+ - 'With circuitverse.org'
+ validations:
+ required: false
+
+ - type: dropdown
+ attributes:
+ label: Is the bug present only on the dev server, the build, or both?
+ description: Describe where the issue/bug occurs.
+ options:
+ - 'Dev Server Only'
+ - 'Build Only'
+ - 'Both'
+ validations:
+ required: false
+
+ - type: textarea
+ attributes:
+ label: Device Information
+ description: |
+ Examples:
+ - **OS**: Ubuntu 20.04
+ - **Browser**: Chrome
+ - **Version**: 89
+ render: markdown
+ validations:
+ required: false
+
+ - type: input
+ attributes:
+ label: Additional Context
+ description: Add any other context about the problem here.
+ validations:
+ required: false
+
+ - type: dropdown
+ attributes:
+ label: Are you working on this issue?
+ options:
+ - 'Yes'
+ - 'No'
+ validations:
+ required: true
diff --git a/src/components/DialogBox/HexBinDec.vue b/src/components/DialogBox/HexBinDec.vue
index 86c89f4e..e65ebf73 100644
--- a/src/components/DialogBox/HexBinDec.vue
+++ b/src/components/DialogBox/HexBinDec.vue
@@ -217,3 +217,37 @@ function hexConverter(input: string) {
setBaseValues(x)
}
+
+
diff --git a/src/components/Panels/ElementsPanel/ElementsPanel.vue b/src/components/Panels/ElementsPanel/ElementsPanel.vue
index f3e623d6..e5c52896 100644
--- a/src/components/Panels/ElementsPanel/ElementsPanel.vue
+++ b/src/components/Panels/ElementsPanel/ElementsPanel.vue
@@ -233,4 +233,8 @@ function getTooltipText(elementName) {
}
-
+
diff --git a/src/styles/color_theme.scss b/src/styles/color_theme.scss
index a3d1356a..5bdc9fff 100644
--- a/src/styles/color_theme.scss
+++ b/src/styles/color_theme.scss
@@ -494,23 +494,6 @@ select {
background: var(--disable);
}
-#bitconverterprompt {
- color: var(--text-lite);
-}
-
-#bitconverterprompt input {
- /* border-bottom: 1px solid var(--br-primary); */
- color: var(--text-lite);
-}
-
-#bitconverterprompt input:focus {
- /* border-bottom: 1px solid var(--br-primary); */
-}
-
-#bitconverterprompt label {
- color: var(--text-lite) !important;
-}
-
.radio-green {
background: #42b983;
}
diff --git a/src/styles/css/main.stylesheet.css b/src/styles/css/main.stylesheet.css
index 4ff1cb54..c78fe491 100644
--- a/src/styles/css/main.stylesheet.css
+++ b/src/styles/css/main.stylesheet.css
@@ -1539,26 +1539,6 @@ input:checked + .slider:before {
left: 0;
}
-#bitconverterprompt {
- text-align: center;
- font: inherit;
- border: none;
- margin-top: 5px;
- padding: 0;
-}
-
-#bitconverterprompt input {
- background: transparent;
- border: none;
- outline: none;
- text-align: center;
- font: inherit;
-}
-
-#bitconverterprompt input:focus {
- border: none;
-}
-
.ui-dialog .ui-dialog-buttonpane button {
margin-left: 0.4em;
}