0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-10 11:22:40 +00:00

Reorder snippets

This commit is contained in:
Trevor Buckner
2022-08-06 12:09:14 -04:00
parent 44dbb8f285
commit ddcf34c006
2 changed files with 1 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ const Snippetbar = createClass({
mergeCustomizer : function(valueA, valueB, key) {
if(key == "snippets") {
const result = _.unionBy(valueB, valueA, 'name'); // Join snippets together, with preference for the current theme over the base theme
const result = _.reverse(_.unionBy(_.reverse(valueB), _.reverse(valueA), 'name')); // Join snippets together, with preference for the current theme over the base theme
return _.filter(result, 'gen'); //Only keep snippets with a 'gen' property.
}
},