mirror of
				https://github.com/songquanpeng/one-api.git
				synced 2025-11-04 15:53:42 +08:00 
			
		
		
		
	feat: add balance not supported message in ChannelsTable
This commit is contained in:
		@@ -1,16 +1,6 @@
 | 
			
		||||
import React, {useEffect, useState} from 'react';
 | 
			
		||||
import {useTranslation} from 'react-i18next';
 | 
			
		||||
import {
 | 
			
		||||
  Button,
 | 
			
		||||
  Dropdown,
 | 
			
		||||
  Form,
 | 
			
		||||
  Input,
 | 
			
		||||
  Label,
 | 
			
		||||
  Message,
 | 
			
		||||
  Pagination,
 | 
			
		||||
  Popup,
 | 
			
		||||
  Table,
 | 
			
		||||
} from 'semantic-ui-react';
 | 
			
		||||
import {Button, Dropdown, Form, Input, Label, Message, Pagination, Popup, Table,} from 'semantic-ui-react';
 | 
			
		||||
import {Link} from 'react-router-dom';
 | 
			
		||||
import {
 | 
			
		||||
  API,
 | 
			
		||||
@@ -54,6 +44,9 @@ function renderType(type, t) {
 | 
			
		||||
function renderBalance(type, balance, t) {
 | 
			
		||||
  switch (type) {
 | 
			
		||||
    case 1: // OpenAI
 | 
			
		||||
        if (balance === 0) {
 | 
			
		||||
            return <span>{t('channel.table.balance_not_supported')}</span>;
 | 
			
		||||
        }
 | 
			
		||||
      return <span>${balance.toFixed(2)}</span>;
 | 
			
		||||
    case 4: // CloseAI
 | 
			
		||||
      return <span>¥{balance.toFixed(2)}</span>;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user