Skip to content

Commit fa8b627

Browse files
committed
explorer app image and URL to API fix
1 parent 88929e1 commit fa8b627

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

app/views/ethereum/address/_currencies_table.html.erb

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,17 @@
5050
}
5151
}`);
5252

53-
new widgets.table('#currencies_table', query, 'ethereum.transfers', {
53+
render('#currencies_table','query_id',{},
54+
class {
55+
init(){
56+
table.new
57+
}
58+
onData (data) {
59+
table.data = data
60+
}
61+
});
62+
63+
{
5464
title: '<%= t('widgets.headers.currencies_sent_received') %>',
5565
dataOptions: [
5666
{

docker-compose/.env

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
LC_COMPOSE_IMAGE=nexus.bitq.dev/repository/explorer
2-
LC_COMPOSE_IMAGE_TAG=latest
1+
LC_APP_IMAGE=nexus.bitq.dev/repository/explorer
2+
LC_APP_IMAGE_TAG=latest
33
LC_COMPOSE_RAILS_ENV=production
44
LC_COMPOSE_BITQUERY_PROJECT_URL="https://bitquery.io"
55
LC_COMPOSE_BITQUERY_IMAGES="https://bitquery.io/wp-content/uploads/2020/09"
66
LC_COMPOSE_BITQUERY_GRAPHQL="http://graphql-internal.api-cluster.local"
7-
LC_COMPOSE_IDE_DOMAIN="graphql.bitquery.io"
8-
7+
LC_COMPOSE_BITQUERY_IDE_API="https://graphql.bitquery.io/api"
98
LC_COMPOSE_CLUSTER="api-cluster"
109
LC_COMPOSE_IPADDR="127.0.0.1"
1110
LC_COMPOSE_WEB_PORT="3000"

docker-compose/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ x-graceful-stop: &graceful-stop
1212

1313
services:
1414
rails:
15-
image: ${LC_COMPOSE_IMAGE}:${LC_COMPOSE_IMAGE_TAG}
15+
image: ${LC_APP_IMAGE}:${LC_APP_IMAGE_TAG}
1616
command: [
1717
"bundle", "exec", "pumactl",
1818
"-F", "config/puma.${LC_COMPOSE_RAILS_ENV}.rb",
@@ -30,7 +30,7 @@ services:
3030
- BITQUERY_PROJECT_URL=${LC_COMPOSE_BITQUERY_PROJECT_URL}
3131
- BITQUERY_IMAGES=${LC_COMPOSE_BITQUERY_IMAGES}
3232
- BITQUERY_GRAPHQL=${LC_COMPOSE_BITQUERY_GRAPHQL}
33-
- BITQUERY_IDE_API=https://${LC_COMPOSE_IDE_DOMAIN}/api
33+
- BITQUERY_IDE_API=${LC_COMPOSE_BITQUERY_IDE_API}
3434
<<: *common-dns
3535
<<: *common-network
3636
<<: *common-restart

0 commit comments

Comments
 (0)