1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Update gateway flow

This commit is contained in:
Hillel Coren 2017-10-11 15:20:07 +03:00
parent c7fe35126f
commit a94307f5e1
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ You can disable the feature by adding ``GOOGLE_MAPS_ENABLED=false`` to the .env
Time Tracking App
"""""""""""""""""
You can create a desktop wrapper for the time tracking app by installing `Nativefier <https://github.com/jiahaog/nativefier>`_ and then running:
You can create a Windows, MacOS or Linux desktop wrapper for the time tracking app by installing `Nativefier <https://github.com/jiahaog/nativefier>`_ and then running:
.. code-block:: shell

View File

@ -1,7 +1,7 @@
@extends('header')
@section('top-right')
@if (env('WEPAY_CLIENT_ID') && ! count($accountGatewaysIds))
@if (env('WEPAY_CLIENT_ID') && isset($accountGatewaysIds) && ! count($accountGatewaysIds))
{!! Button::primary(trans('texts.sign_up_with_wepay'))
->asLinkTo(URL::to('/gateways/create?wepay=true')) !!}
@endif