Skip to content

Commit

Permalink
addes todos
Browse files Browse the repository at this point in the history
  • Loading branch information
KlemenSpruk committed Oct 6, 2023
1 parent c1d2347 commit f88a396
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vue/components/profile-search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ const inputProps = defineProps<{
const emit = defineEmits(['selected']);
// todo: https://taiga.velis.si/project/velis74-dynamic-forms/us/836?no-milestone=1
const searchUrl: string = (inputProps.searchUrl !== undefined ? inputProps.searchUrl : '/account/profile') as string;
const selected: Ref<UserDataJSON | null> = ref(null);
Expand Down
1 change: 1 addition & 0 deletions vue/profile-search-add-user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { UserDataJSON } from './components/user-session/data-types';

let selectedUser: UserDataJSON | undefined;

// todo: https://taiga.velis.si/project/velis74-dynamic-forms/us/836?no-milestone=1
function selected(profile: UserDataJSON) {
selectedUser = profile;
}
Expand Down

0 comments on commit f88a396

Please sign in to comment.