diff --git a/locales/en.json b/locales/en.json index 4097fe3b..b418b301 100644 --- a/locales/en.json +++ b/locales/en.json @@ -212,6 +212,7 @@ "search": "Search" }, "list": { + "add": "Add", "add_account": "Add account to list", "cancel_edit": "Cancel editing", "clear_error": "Clear error", @@ -226,7 +227,8 @@ "manage": "Manage lists", "modify_account": "Modify lists with account", "remove_account": "Remove account from list", - "save": "Save changes" + "save": "Save changes", + "search_following_placeholder": "Search among people you follow" }, "magic_keys": { "dialog_header": "Keyboard shortcuts", diff --git a/pages/[[server]]/list/[list]/index/accounts.vue b/pages/[[server]]/list/[list]/index/accounts.vue index 34b2163e..b63935a0 100644 --- a/pages/[[server]]/list/[list]/index/accounts.vue +++ b/pages/[[server]]/list/[list]/index/accounts.vue @@ -7,9 +7,49 @@ const params = useRoute().params const listId = computed(() => params.list as string) const paginator = useMastoClient().v1.lists.$select(listId.value).accounts.list() + +// TODO - these are placeholder vars -- need to rename &/or set correctly +const actionError = false +const createText = ref('') +const inputRef = ref() +function addAccount() { + // TODO: implement +}