-
-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/4.1.7: polishing up the filters Renaming the list filters compiling assets Apply fixes from StyleCI (#440) Added filters to the model indexes Cleanup Cleanup
- Loading branch information
Showing
20 changed files
with
249 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"/js/app.js": "/js/app.js?id=c09314617cfd4bbabf34", | ||
"/js/app.js": "/js/app.js?id=85577627b51c6fe6aace", | ||
"/css/app.css": "/css/app.css?id=f13a10a1564f49e2b5f0", | ||
"/js/app.js.map": "/js/app.js.map?id=6bb04d2ec806545765cc", | ||
"/js/app.js.map": "/js/app.js.map?id=28b80c57c98ffab2c36d", | ||
"/favicon.png": "/favicon.png?id=39d853e8c2bdbc38fde3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script type="text/ecmascript-6"> | ||
export default { | ||
props: ['models'], | ||
data() { | ||
return { | ||
search: '', | ||
postList: this.models ? this.models : [] | ||
} | ||
}, | ||
computed: { | ||
/** | ||
* Filter posts by their title. | ||
* | ||
* @source https://codepen.io/AndrewThian/pen/QdeOVa | ||
*/ | ||
filteredList() { | ||
return this.postList.filter(post => { | ||
return post.title.toLowerCase().includes(this.search.toLowerCase()) | ||
}) | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script type="text/ecmascript-6"> | ||
export default { | ||
props: ['models'], | ||
data() { | ||
return { | ||
search: '', | ||
tagList: this.models ? this.models : [] | ||
} | ||
}, | ||
computed: { | ||
/** | ||
* Filter tags by their name. | ||
* | ||
* @source https://codepen.io/AndrewThian/pen/QdeOVa | ||
*/ | ||
filteredList() { | ||
return this.tagList.filter(tag => { | ||
return tag.name.toLowerCase().includes(this.search.toLowerCase()) | ||
}) | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script type="text/ecmascript-6"> | ||
export default { | ||
props: ['models'], | ||
data() { | ||
return { | ||
search: '', | ||
topicList: this.models ? this.models : [] | ||
} | ||
}, | ||
computed: { | ||
/** | ||
* Filter topics by their name. | ||
* | ||
* @source https://codepen.io/AndrewThian/pen/QdeOVa | ||
*/ | ||
filteredList() { | ||
return this.topicList.filter(topic => { | ||
return topic.name.toLowerCase().includes(this.search.toLowerCase()) | ||
}) | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.