compiled but the readonly and edit mode is not working

This commit is contained in:
filipriec
2025-05-23 15:22:21 +02:00
parent 58fdaa8298
commit 667eb4809d
10 changed files with 643 additions and 17 deletions

View File

@@ -9,6 +9,7 @@ use crate::components::{
handlers::sidebar::{self, calculate_sidebar_layout},
form::form::render_form,
admin::render_add_table,
admin::add_logic::render_add_logic,
auth::{login::render_login, register::render_register},
};
use crate::config::colors::themes::Theme;
@@ -107,6 +108,16 @@ pub fn render_ui(
login_state.current_field < 3,
highlight_state,
);
} else if app_state.ui.show_add_logic {
render_add_logic(
f,
main_content_area,
theme,
app_state,
&mut admin_state.add_logic_state,
is_edit_mode, // Pass the general edit mode status
highlight_state,
);
} else if app_state.ui.show_login {
render_login(
f,