Files
ubicloud/views/components/save_inline_button.erb
Burak Yucesoy d160701b2e Add save inline edit button component
This commit adds a new component for the save the changes made in the inline
edit mode.
2025-05-28 04:44:29 +03:00

15 lines
406 B
Plaintext

<%# locals: (url: request.path, csrf_url: url, text: "Edit", extra_class: nil, confirmation_message: nil) %>
<%== part(
"components/button",
text: text,
icon: "hero-check-circle",
extra_class: "save-inline-btn #{extra_class}",
type: "safe",
attributes: {
"data-url" => url,
"data-csrf" => csrf_token(csrf_url, "PATCH"),
"data-confirmation-message" => confirmation_message
}
) %>