1871 - Adding search functionality to the Activity landing page in the Dashboard

This commit is contained in:
Jonathan Bobel
2024-08-21 11:33:18 -04:00
parent b61329f86d
commit 9c72c9bd62
5 changed files with 273 additions and 3 deletions

View File

@@ -79,6 +79,7 @@ const javascripts = () => {
paths.src + 'javascripts/main.js',
paths.src + 'javascripts/totalMessagesChart.js',
paths.src + 'javascripts/activityChart.js',
paths.src + 'javascripts/searchActivity.js',
])
.pipe(plugins.prettyerror())
.pipe(plugins.babel({
@@ -97,7 +98,7 @@ const copyGtmHead = () => {
.pipe(dest(paths.dist + 'js/'));
};
// Task to copy images
// Task to copy imag
const copyImages = () => {
return src(paths.src + 'images/**/*', { encoding: false })
.pipe(dest(paths.dist + 'images/'));