diff --git a/packages/file-handling/src/clipboard.js b/packages/file-handling/src/clipboard.js
index 426145dc0fd106f909b6fd20610558150575e882..6576cbf9b7fcce1bdfbb8d3171c06d694e1f09a6 100644
--- a/packages/file-handling/src/clipboard.js
+++ b/packages/file-handling/src/clipboard.js
@@ -103,13 +103,16 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
     }
 
 
+
     connectedCallback() {
         super.connectedCallback();
         const that = this;
         this.updateComplete.then(() => {
 
             // see: http://tabulator.info/docs/4.7
-            this.tabulatorTable = new Tabulator(this._("#clipboard-content-table"), {
+            this.tabulatorTable = new Tabulator(this._("#clipboard-content-table"), {//if you delete the wrapper around the table you need to set a heigh here
+                maxHeight:"100%",
+                height:"100%",
                 layout: "fitColumns",
                 selectable: true,
                 selectableRangeMode: "drag",
@@ -323,6 +326,9 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
                 this.tabulatorTable.setData(data);
             }
         }
+        if (this._("#select_all")) {
+            this._("#select_all").checked = false;
+        }
     }
 
     /**