Minor text fixes

This commit is contained in:
Scott Idem
2024-11-08 15:47:41 -05:00
parent f4538720b2
commit 791454b8fa

View File

@@ -21,33 +21,19 @@ let search_submit_results: any = null;
<div class="ae_group ae_row flex flex-row flex-wrap gap-1 w-full items-center justify-center"> <div class="ae_group ae_row flex flex-row flex-wrap gap-1 w-full items-center justify-center">
<!-- Max events select options --> <!-- Max posts select options -->
<span <span
class="flex flex-row gap-1 items-center justify-around" class="flex flex-row gap-1 items-center justify-around"
> >
<label <label
class="text-sm w-32 text-right" class="text-sm w-32 text-right"
for="qry_limit__events"> for="qry_limit__posts">
Max events: Max posts:
</label> </label>
<select <select
id="qry_limit__events" id="qry_limit__posts"
bind:value={$idaa_loc.bb.qry__limit} bind:value={$idaa_loc.bb.qry__limit}
on:change={() => { on:change={() => {
// search__event_presenter({
// api_cfg: $ae_api,
// post_id: $events_slct.post_id,
// agree: true,
// biography: null,
// ft_search_str: '',
// lk_search_str: '',
// params: {
// 'qry__enabled': 'enabled',
// 'qry__hidden': 'not_hidden',
// 'qry__limit': $idaa_loc.bb.qry__limit__events,},
// try_cache: false,
// log_lvl: log_lvl,
// });
}} }}
class="select w-20 text-sm" class="select w-20 text-sm"
> >
@@ -112,7 +98,7 @@ let search_submit_results: any = null;
<button <button
disabled={!$ae_loc.trusted_access} disabled={!$ae_loc.trusted_access}
on:click={() => { on:click={() => {
if (!confirm('Create new meeting?')) { if (!confirm('Create new post?')) {
return false; return false;
} }
// $idaa_slct.post_id = ''; // $idaa_slct.post_id = '';
@@ -132,10 +118,10 @@ let search_submit_results: any = null;
$idaa_sess.bb.show__modal_view__post_id = true; $idaa_sess.bb.show__modal_view__post_id = true;
$idaa_sess.bb.show__inline_edit__post_obj = true; $idaa_sess.bb.show__inline_edit__post_obj = true;
}} }}
class="btn_new_recovery_meeting btn btn-sm variant-ghost-warning hover:variant-filled-warning transition text-xs" class="btn_new_post btn btn-sm variant-ghost-warning hover:variant-filled-warning transition text-xs"
title="Create new post"
> >
<span class="fas fa-plus m-1"></span> Create New Meeting <span class="fas fa-plus m-1"></span> Create New Post
</button> </button>
{/if} {/if}