diff --git a/img/logo-1.png b/img/logo-1.png
index 6dd4978..a579077 100644
Binary files a/img/logo-1.png and b/img/logo-1.png differ
diff --git a/js/bdwareclient.js b/js/bdwareclient.js
index 5b2030c..5281a9d 100644
--- a/js/bdwareclient.js
+++ b/js/bdwareclient.js
@@ -397,7 +397,10 @@ function changeAppInternal(requireRendering) {
+ "
\n"
+ "
\n" + "";
$("#mainDiv")[0].innerHTML = html;
- for (const f of global.currentContract.exportedFunctions) {
- $('#selectAction')
- .append(`
`);
- }
+ filterIOFunction();
+ }
+}
+function filterIOFunction(){
+ var showIO = showIOInput.checked;
+ $('#selectAction').html("
");
+ for (const f of global.currentContract.exportedFunctions) {
+ if (!showIO || f.relatedPermission.length!=0)
+ $('#selectAction')
+ .append(`
`);
}
}