I want to change the save button icon from fa-cloud-upload to fa-save.
Found the original code in /web/static/src/views/form/form_status_indicator/form_status_indicator.xml
type="button"
class="o_form_button_save btn btn-light py-0"
t-att-disabled="props.isDisabled"
data-hotkey="s"
t-on-click.stop="save"
data-tooltip="Save manually"
aria-label="Save manually">
I don't want to inherit by replace the whole block, to just change one line.
Is the i tag a attribute? I tried using name and string, both failed.
So is there a method to change just the i class part
Thank you!