mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-10 11:22:40 +00:00
Reorder snippets
This commit is contained in:
@@ -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.
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user