fix: add logs script to all pages

This commit is contained in:
Muhammad Labeeb 2025-05-02 14:06:30 +05:00 committed by GitHub
parent f02889dc6a
commit 1e0cb56f24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 2 additions and 5 deletions

View File

@ -0,0 +1 @@
- [Bugfix] Add logs script to all pages so each page can handle completion of a command itself and not delegate it to a page with logs script. (by @mlabeeb03)

View File

@ -91,7 +91,5 @@ Search for any tutor command and execute it with a single click.
}, 200); }, 200);
}); });
</script> </script>
<script src="{{ url_for('static', filename='js/logs.js') }}"></script>
{% endblock %} {% endblock %}

View File

@ -117,6 +117,7 @@
} }
</script> </script>
{% block scripts %}{% endblock %} {% block scripts %}{% endblock %}
<script src="{{ url_for('static', filename='js/logs.js') }}"></script>
</body> </body>
</html> </html>

View File

@ -36,5 +36,4 @@ This will run Launch Platform to apply all plugin changes. This may take a few m
} }
ShowRunCommandButton(); ShowRunCommandButton();
</script> </script>
<script src="{{ url_for('static', filename='js/logs.js') }}"></script>
{% endblock %} {% endblock %}

View File

@ -105,6 +105,4 @@
}); });
}); });
</script> </script>
<script src="{{ url_for('static', filename='js/logs.js') }}"></script>
{% endblock %} {% endblock %}