Compare commits

...

5 commits

Author SHA1 Message Date
97bc6c45a9
Merge remote-tracking branch 'origin/main' into fix-sidebar
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
ci/woodpecker/pull_request_closed/build-and-publish Pipeline was successful
2025-07-16 04:42:55 +02:00
a146eb001a
style: manually edit the reply svg a bit
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
2025-07-15 00:16:47 +02:00
dac473e9fb Merge branch 'main' of ssh://git.gorb.app:2022/gorb/frontend
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
2025-07-14 18:45:18 +02:00
fc87bd4b6f
chore: remove unused temporary members list array 2025-07-14 18:44:25 +02:00
9d1eeff582
feat: remove -ms-overflow-style CSS property from left column 2025-07-14 18:44:18 +02:00
2 changed files with 3 additions and 48 deletions

View file

@ -4,14 +4,10 @@
:editing.sync="props.editing" :replying-to.sync="props.replyingTo"> :editing.sync="props.editing" :replying-to.sync="props.replyingTo">
<div v-if="props.replyMessage" class="message-reply-svg"> <div v-if="props.replyMessage" class="message-reply-svg">
<svg <svg
width="1.5em" width="1.5em" height="1.5em"
height="1.5em" viewBox="0 0 150 87.5" version="1.1" id="svg1"
viewBox="0 0 151.14355 87.562065"
version="1.1"
id="svg1"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
style="overflow: visible;"> style="overflow: visible;">
<defs id="defs1" />
<defs <defs
id="defs1" /> id="defs1" />
<g <g

View file

@ -141,47 +141,6 @@ const options = [
const guilds: GuildResponse[] | undefined = await fetchWithApi("/me/guilds"); const guilds: GuildResponse[] | undefined = await fetchWithApi("/me/guilds");
//const servers = await fetchWithApi("/servers") as { uuid: string, name: string, description: string }[];
//console.log("servers:", servers);
const members = [
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
},
{
id: "3287484395",
displayName: "SauceyRed"
}
];
function createDropdown() { function createDropdown() {
const dropdown = h(GuildDropdown, { options }); const dropdown = h(GuildDropdown, { options });
const div = document.createElement("div"); const div = document.createElement("div");