Skip to content
This repository has been archived by the owner on Feb 27, 2021. It is now read-only.

Commit

Permalink
Fixed unable to add highlight if not changing default color
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Dern committed Oct 12, 2020
1 parent c430a7e commit 8f00f9c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions config/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ current:
major: 0
minor: 5
patch: 3
prerelease: 5-g75b40a7
prerelease: 7-gc430a7e
buildmetadata: ''
commit: 75b40a
commit: c430a7
timestamp:
year: 2020
month: 10
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/highlights.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/import.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/themes-browser.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"/js/app.js": "/js/app.js?id=ca019369339ff86eb7c0",
"/js/app.js": "/js/app.js?id=a6297dc82ee249a4066d",
"/themes/cyca-dark/theme.css": "/themes/cyca-dark/theme.css?id=fe7f273f11bcd8e721fb",
"/themes/cyca-light/theme.css": "/themes/cyca-light/theme.css?id=e30a1ce0db703bcc7f20",
"/js/highlights.js": "/js/highlights.js?id=eff84fdede1ffe75634a",
"/js/import.js": "/js/import.js?id=652949a5101acb08d6a0",
"/js/themes-browser.js": "/js/themes-browser.js?id=cb1957a03585fcf579e0",
"/js/highlights.js": "/js/highlights.js?id=1b4cba2797e63697eee1",
"/js/import.js": "/js/import.js?id=6ffeb0dfe652140473d6",
"/js/themes-browser.js": "/js/themes-browser.js?id=a2e6fb0a173bb2d6c50d",
"/themes/cyca-dark/theme.json": "/themes/cyca-dark/theme.json?id=e6af9f523b70bc467aa4",
"/themes/cyca-light/theme.json": "/themes/cyca-light/theme.json?id=bb59033be8f29999311e"
}
4 changes: 2 additions & 2 deletions resources/js/components/Highlights.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default {
return {
highlights: highlights,
newExpression: null,
newColor: null,
newColor: '#000000',
};
},
computed: {
Expand All @@ -76,7 +76,7 @@ export default {
});
self.newExpression = null;
self.newColor = null;
self.newColor = '#000000';
},
onDestroy: async function (id) {
const self = this;
Expand Down

0 comments on commit 8f00f9c

Please sign in to comment.