Commit 382c8da7 authored by Duggan, John's avatar Duggan, John
Browse files

Fix unbound extensions parameter

parent c5e9f261
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ class FileUpload(vuetify.VBtn):
        self.local_file_input = vuetify.VFileInput(
            v_model=self._v_model,
            __properties=["accept"],
            accept=self._extensions,
            accept=",".join(self._extensions) if isinstance(self._extensions, list) else self._extensions,
            classes="d-none",
            ref=self._ref_name,
            # Serialize the content in a way that will work with nova-mvvm and then push it to the server.