Files
ubicloud/views/components/inline_edit_buttons.erb
Enes Cakir fb6e22fe7d Format mistakenly ignored files with erb-formatter
As expected all ERB files starting with the letters 'i', 'c', 'o', 'n'
are formatted.
2025-06-21 11:29:02 +03:00

35 lines
796 B
Plaintext

<%# locals: (url: request.path, csrf_url: url, confirmation_message: nil) %>
<div class="group-[.active]/inline-editable:hidden block">
<%== part(
"components/button",
text: "",
icon: "hero-pencil",
extra_class: "edit-inline-btn",
type: "warning"
) %>
</div>
<div class="group-[.active]/inline-editable:block hidden">
<%== part(
"components/button",
text: "",
icon: "hero-check-circle",
extra_class: "save-inline-btn",
type: "safe",
attributes: {
"data-url" => url,
"data-csrf" => csrf_token(csrf_url, "PATCH"),
"data-confirmation-message" => confirmation_message
}
) %>
<%== part(
"components/button",
text: "",
icon: "hero-x-circle",
extra_class: "cancel-inline-btn",
type: "danger"
) %>
</div>