1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

Updated empty list message

This commit is contained in:
Eldad Fux 2020-02-04 09:14:03 +02:00
parent c2a4c462ac
commit 92060d0b89
7 changed files with 10 additions and 8 deletions

View file

@ -63,8 +63,10 @@ $utopia->post('/v1/projects')
'legalAddress' => $legalAddress,
'legalTaxId' => $legalTaxId,
'teamId' => $team->getUid(),
'platforms' => [],
'webhooks' => [],
'keys' => [],
'tasks' => [],
]
);

View file

@ -27,7 +27,7 @@ $home = $this->getParam('home', '');
data-success-param-trigger-events="projects.list">
<div data-ls-if="0 == {{console-projects.length}}" class="box margin-bottom" style="display: none">
<h3 class="margin-bottom">Get Started</h3>
<h3 class="margin-bottom-small text-bold-2">Get Started</h3>
<p class="margin-bottom-no">No Projects Found, Create your first project now.</p>
</div>
@ -35,7 +35,7 @@ $home = $this->getParam('home', '');
<ul data-ls-loop="console-projects" data-ls-as="project" data-ls-append="" class="tiles cell-3" style="visibility: hidden">
<li class="margin-bottom">
<a data-ls-attrs="href=/console/home?project={{project.$uid}}" class="box">
<div data-ls-bind="{{project.name}}" class="text-one-liner margin-bottom-large">&nbsp;</div>
<div data-ls-bind="{{project.name}}" class="text-one-liner margin-bottom-large text-bold-2">&nbsp;</div>
<i class="icon-right-open"></i>
</a>

View file

@ -16,7 +16,7 @@ $scopes = $this->getParam('scopes', []);
data-success-param-trigger-events="projects.listKeys">
<div data-ls-if="0 == {{console-keys.length}} || undefined == {{console-keys.length}}" class="box margin-top margin-bottom" style="display: none;">
<h3 class="margin-bottom-small">No API Keys Found</h3>
<h3 class="margin-bottom-small text-bold-2">No API Keys Found</h3>
<p class="margin-bottom-no">You haven't created any API keys for your project yet.</p>
</div>

View file

@ -75,7 +75,7 @@ $home = $this->getParam('home', '');
data-name="project-files">
<div data-ls-if="0 == {{project-files.sum}}" class="box margin-bottom">
<h3 class="margin-bottom">No Files Found</h3>
<h3 class="margin-bottom-small text-bold-2">No Files Found</h3>
<p class="margin-bottom-no">Upload your first file to get started</p>
</div>

View file

@ -13,7 +13,7 @@
data-success-param-trigger-events="projects.listTasks">
<div data-ls-if="0 === {{console-tasks.length}} || undefined === {{console-tasks.length}}" class="box margin-top margin-bottom" style="display: none;">
<h3 class="margin-bottom-small">No Tasks Found</h3>
<h3 class="margin-bottom-small text-bold-2">No Tasks Found</h3>
<p class="margin-bottom-no">You haven't created any tasks for your project yet.</p>
</div>

View file

@ -79,7 +79,7 @@ $providers = $this->getParam('providers', []);
data-name="project-users">
<div data-ls-if="0 == {{project-users.sum}}" class="box margin-bottom">
<h3 class="margin-bottom">No Users Found</h3>
<h3 class="margin-bottom-small text-bold-2">No Users Found</h3>
<p class="margin-bottom-no">Create your first user to get started</p>
</div>
@ -224,7 +224,7 @@ $providers = $this->getParam('providers', []);
data-name="project-teams">
<div data-ls-if="0 == {{project-teams.sum}}" class="box margin-bottom" style="display: none;">
<h3 class="margin-bottom">No Teams Found</h3>
<h3 class="margin-bottom-small text-bold-2">No Teams Found</h3>
<p class="margin-bottom-no">Create your first team to get started</p>
</div>

View file

@ -39,7 +39,7 @@ $events = [
data-success-param-trigger-events="projects.listWebhooks">
<div data-ls-if="0 == {{console-webhooks.length}} || undefined == {{console-webhooks.length}}" class="box margin-top margin-bottom" style="display: none;">
<h3 class="margin-bottom-small">No Webhooks Found</h3>
<h3 class="margin-bottom-small text-bold-2">No Webhooks Found</h3>
<p class="margin-bottom-no">You haven't created any webhooks for your project yet.</p>
</div>