mirror of
https://github.com/openwrt/luci.git
synced 2025-09-12 20:39:50 +00:00
In HTML, the following lines of code are equivalent: ``` <input disabled /> <input disabled="true" /> <input disabled="false" /> <input disabled="any" /> ``` If you want to cancel the 'disabled' flag, you must completely remove it from the HTML instead of assigning a value. Signed-off-by: Liangbin Lian <jjm2473@gmail.com>