diff --git a/app/client.imba b/app/client.imba index e2da06a..6fd6631 100644 --- a/app/client.imba +++ b/app/client.imba @@ -138,6 +138,9 @@ tag app css .frequency fs:15px c:blue3 + css img + mr:10px rd:3px h:20px w:20px + <.buttons> "CREATE" "DELETE" @@ -162,7 +165,9 @@ tag app <.links> for obj in state.scored_links <.link@click.prevent=handle_click_link(obj)> - obj.name + <[d:flex]> + + obj.name <.frequency> obj.frequency or 0 imba.mount diff --git a/package.json b/package.json index 0ab20e3..2c2ee81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fuzzyhome", - "version": "0.0.9", + "version": "0.0.11", "scripts": { "start": "imba run -SMH --baseurl . -w server.imba", "build-app": "imba build -SMH --baseurl . server.imba", diff --git a/sw.imba b/sw.imba index a2ef12f..fbffc61 100644 --- a/sw.imba +++ b/sw.imba @@ -1,7 +1,7 @@ let p = console.log const app_prefix = "fuzzyhome_cache" -const version = "0.0.9" +const version = "0.0.11" const cache_name = "{app_prefix}-{version}"