Skip to content

Commit

Permalink
Fixing test and consistent folder management, UI
Browse files Browse the repository at this point in the history
Signed-off-by: AlexMikhalev <[email protected]>
  • Loading branch information
AlexMikhalev committed Jun 1, 2024
1 parent 098db12 commit ed36b96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/terraphim_config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ impl ConfigState {

let role_name = role.name.to_lowercase();
log::debug!("Role name for searching {role_name}");
log::debug!("All roles defined {:?}", self.roles.clone().into_keys());
log::debug!("All roles defined {:?}", self.roles.clone().into_keys());
let role = self.roles.get(&role_name).unwrap().lock().await;
let documents = role
.query_graph(
Expand Down
4 changes: 2 additions & 2 deletions desktop/src/lib/Search/ResultItem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
<div class="media-content">
<div class="content">
<div class="level-right">
{#if document.tags}
<Taglist>
{#if "tags" in document}
{#each document.tags as tag}
<a
href="https://terraphim.github.io/terraphim-project/#/page/{tag}"
target="_blank"><Tag rounded>{tag}</Tag></a
>
{/each}
{/if}
</Taglist>
{/if}
</div>
<div transition:fade>
<button on:click={onTitleClick}>
Expand Down

0 comments on commit ed36b96

Please sign in to comment.