Commit 3ffee584 authored by Harumi Jang's avatar Harumi Jang 🤠 Committed by Tim Plunkett
Browse files

Issue #3281217 by hooroomoo, bnjmnm, srishtiiee: Filtering, sorting, and paging are not persisted

parent 3aba06ee
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ build:
          - sed -i "s/# Gets list of files to check./cd \"\$\(dirname \"\$0\"\)\";/" modules/contrib/project_browser/commit-code-check.sh
          # When constructing $FILES, ignore the `commit-code-check.sh` file we just copied.
          - sed -i "s/--exclude=vendor/--exclude=vendor --exclude=commit-code-check.sh/" modules/contrib/project_browser/commit-code-check.sh
          # Exclude our files from es6 checking.
          - sed -i "s/layercake.js \]\]/\0 \&\& ! [[ \"\$FILE\" =~ sveltejs ]]/" modules/contrib/project_browser/commit-code-check.sh
          # vendor/bin now needs to be prefixed. And $TOP_LEVEL/vendor needs to be rewritten.
          - sed -i "s/vendor\/bin/\/var\/www\/html\/vendor\/bin/" modules/contrib/project_browser/commit-code-check.sh
          - sed -i "s/\$TOP_LEVEL\/vendor/\/var\/www\/html\/vendor/" modules/contrib/project_browser/commit-code-check.sh
+2 −1
Original line number Diff line number Diff line
@@ -33,7 +33,8 @@
    "rollup-plugin-livereload": "^2.0.0",
    "rollup-plugin-svelte": "^7.0.0",
    "rollup-plugin-terser": "^7.0.0",
    "svelte": "^3.0.0"
    "svelte": "^3.0.0",
    "svelte-previous": "^2.1.1"
  },
  "dependencies": {
    "sirv-cli": "^1.0.0"
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+5 −3
Original line number Diff line number Diff line
@@ -8,9 +8,11 @@
<p class="filters-applied">
  <span class="filter-label">{label}</span>
  <button type="button" on:click={clickHandler} class="close-button">
    {#if label}
      <span class="visually-hidden"
        >{Drupal.t('Remove @filter', { '@filter': label })}</span
      >
    {/if}
    <img
      src="/{drupalSettings.project_browser
        .module_path}/images/white-close-icon.svg"
Loading