Skip to content

Commit

Permalink
feat(fe/community): Text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MendyBerger committed Sep 8, 2022
1 parent 22ee03b commit 7524923
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl CreateCircle {
.property("label", STR_CIRCLE_NAME)
.property("slot", "name")
.child(html!("input" => HtmlInputElement, {
.property("placeholder", "Choose a name that aims to connect members")
.property("placeholder", "Type a name")
.with_node!(input => {
.event(clone!(state => move |_: events::Input| {
let value = input.value();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl CirclesList {
.child(html!("button-rect", {
.property("slot", "create-button")
.property("color", "blue")
.text("Start a new circle")
.text("Start a circle")
.event(clone!(state => move |_: events::Click| {
state.create_popup_open.set(true);
}))
Expand Down
2 changes: 1 addition & 1 deletion frontend/elements/src/entry/community/create-circle.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { LitElement, html, css, customElement, property } from "lit-element";
import "@elements/core/popups/popup-body";

const STR_CREATE = "Start a new circle";
const STR_CREATE = "Start a circle";

@customElement("community-create-circle")
export class _ extends LitElement {
Expand Down

0 comments on commit 7524923

Please sign in to comment.