Skip to content

Commit

Permalink
[#112] fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Orchaldir committed Nov 24, 2023
1 parent 883d563 commit a4f9817
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rpg_tools_editor/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use rpg_tools_core::model::culture::Culture;
use rpg_tools_core::model::race::Race;
use rpg_tools_core::model::relations::Relations;
use rpg_tools_core::model::{get_setting_path, RpgData};
use rpg_tools_core::utils::storage::{Id, Storage};
use rpg_tools_core::utils::storage::Storage;
use rpg_tools_rendering::rendering::config::example::create_config;
use rpg_tools_rendering::rendering::config::RenderConfig;
use std::env;
Expand Down
4 changes: 2 additions & 2 deletions rpg_tools_editor/src/route/relation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use rpg_tools_core::model::RpgData;
use rpg_tools_core::utils::relation::RelationStorage;
use rpg_tools_core::utils::storage::Element;
use rpg_tools_core::utils::storage::Id;
use serde::{Deserialize, Serialize};
use serde::Serialize;
use std::fmt::Display;

pub mod relationship;
Expand All @@ -16,7 +16,7 @@ pub struct RelationUpdate<'r> {
relation: &'r str,
}

pub fn get_edit_relations_template<'a, T: Clone + Display + Serialize>(
pub fn get_edit_relations_template<T: Clone + Display + Serialize>(
data: &RpgData,
id: CharacterId,
relations: &RelationStorage<CharacterId, T>,
Expand Down

0 comments on commit a4f9817

Please sign in to comment.