Skip to content

Commit 7d29e54

Browse files
committed
fixed bug
1 parent 2b05030 commit 7d29e54

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

build/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<head>
44
<meta charset="utf-8">
55
<title>任务列表</title>
6-
<link href="main-32611e60e4828f4bb758.css" rel="stylesheet"></head>
6+
<link href="main-f2701f5cf495d5997220.css" rel="stylesheet"></head>
77
<body>
88
<div id='root'>
99
</div>
10-
<script src="main-32611e60e4828f4bb758.js"></script></body>
10+
<script src="main-f2701f5cf495d5997220.js"></script></body>
1111
</html>

build/main-32611e60e4828f4bb758.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

build/main-32611e60e4828f4bb758.css renamed to build/main-f2701f5cf495d5997220.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/main-32611e60e4828f4bb758.css.map renamed to build/main-f2701f5cf495d5997220.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/main-32611e60e4828f4bb758.js renamed to build/main-f2701f5cf495d5997220.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/main-f2701f5cf495d5997220.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/Input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React from 'react';
22
import action from '../actions';
33
import {connect} from 'react-redux';
4-
let input;
54

65
let Input = ({newTaskName,dispatch}) => {
6+
let input;
77
let addTodos = (e) =>{
88
let name = input.value.trim();
99
if(name.length === 0 || e.keyCode !== 13){

0 commit comments

Comments
 (0)