table fixes

This commit is contained in:
Believethehype 2024-01-17 18:22:51 +01:00
parent 7527aef14d
commit 97b3b402e5
3 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ export default {
await client.addRelay("wss://relay.f7z.io")
await client.addRelay("wss://pablof7z.nostr1.com")
await client.addRelay("wss://relay.nostr.net")
await client.addRelay("wss://relay.nostr.band");
await client.addRelay("wss://nostr-pub.wellorder.net")
//await client.addRelay("wss://relay.nostr.band");
//await client.addRelay("wss://nostr-pub.wellorder.net")
const pubkey = await nip07_signer.getPublicKey();
await client.connect();

View File

@ -28,7 +28,7 @@ import store from '../store';
const headers: Header[] = [
{ text: "Results:", value: "content", width: 400},
{ text: "Results:", value: "content", fixed: true, width: 800},
{ text: "Time", value: "indicator.time", sortable: true, width:100},
];
</script>

View File

@ -19,7 +19,7 @@ async function send_search_request(message) {
let tags = []
tags.push(Tag.parse(["i", message, "text"]))
tags.push(Tag.parse(["param", "max_results", "100"]))
let evt = new EventBuilder(5302, "Search for me", tags)
let evt = new EventBuilder(5302, "NIP 90 Search request", tags)
let res = await client.sendEventBuilder(evt)
miniToastr.showMessage("Sent Request to DVMs", "Awaiting results", VueNotifications.types.warn)
if (!listener){