code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/source/datastore/record/Record.js b/source/datastore/record/Record.js @@ -309,6 +309,17 @@ const Record = Class({
this.get( 'storeKey' ), this.constructor );
},
+ /**
+ Method: O.Record#getData
+
+ Returns:
+ {Object} The raw data hash in the store for this object.
+ */
+ getData () {
+ return this._data |... | 0 |
diff --git a/js/tab.js b/js/tab.js @@ -61,7 +61,8 @@ class Tab {
};
updateBadgeIcon () {
- if (!this.site.specialDomain() && !this.site.whitelisted && settings.getSetting('trackerBlockingEnabled')) {
+ // if (!this.site.specialDomain() && !this.site.whitelisted && settings.getSetting('trackerBlockingEnabled')) {
+ if (... | 3 |
diff --git a/docs/tailwind.js b/docs/tailwind.js @@ -46,7 +46,7 @@ config.borderWidths = Object.assign(config.borderWidths, {
})
config.borderColors = Object.assign(config.colors, {
- default: config.colors['slate-lighter'],
+ default: config.colors['grey-light'],
})
config.width = Object.assign(config.width, {
| 2 |
diff --git a/src/resources/frames.json b/src/resources/frames.json "url":"https://youtu.be/z2BHfrR3ikE",
"mr": "0",
"health": "100/300",
- "shield": "115/345",
- "armor": "65",
- "power": "100/150",
+ "shield": "125/375",
+ "armor": "200",
+ "power": "125/188",
"speed": "1.05",
"conclave": "80",
"polarities": ["1x <:na... | 3 |
diff --git a/src/index.js b/src/index.js @@ -23,11 +23,12 @@ const logDie = (x) => {
}
const getBuild = (ver)=>{
try {
- let regex = /v1\.0\.0\.(\d{4,5})\s*/;
- let res = regex.exec(ver);
+ const res = /v1\.0\.0\.(\d{4,5})\s*/.exec(ver);
return parseInt(res[1]);
} catch (error) {
- return 0;
+ logError(`It looks like y... | 11 |
diff --git a/app/eosTokens.js b/app/eosTokens.js // Provide a list of EOS tokens that are available
//
-const eosTokens = ['eosio.token', 'eosadddddddd', 'eosdactokens', 'gyztomjugage', 'eoxeoxeoxeox'];
+const eosTokens = ['eosio.token', 'eosadddddddd', 'eosdactokens', 'gyztomjugage', 'eoxeoxeoxeox', 'eosiochaince'];
e... | 0 |
diff --git a/lib/iob/history.js b/lib/iob/history.js @@ -99,9 +99,13 @@ function calcTempTreatments (inputs, zeroTempDuration) {
var temp = {};
temp.timestamp = current.timestamp;
temp.started_at = new Date(tz(current.timestamp));
+ if (temp.started_at > now) {
+ console.error("Warning: ignoring",current.amount,"U bolu... | 8 |
diff --git a/app/components/Settings/WalletSettings.jsx b/app/components/Settings/WalletSettings.jsx @@ -4,6 +4,9 @@ import BalanceClaimActive from "../Wallet/BalanceClaimActive";
import Translate from "react-translate-component";
import counterpart from "counterpart";
import WalletDb from "stores/WalletDb";
+import {F... | 14 |
diff --git a/src/js/dex/component.js b/src/js/dex/component.js return orders;
}
+ function normalizeBalance(n) {
+ return n / Math.pow(10, 8);
+ }
+
function normalizeOrder(order) {
return {
- price: order.price / Math.pow(10, 8),
+ price: normalizeBalance(order.price),
amount: order.amount
};
}
- function DexControlle... | 3 |
diff --git a/packages/node_modules/@node-red/runtime/lib/api/nodes.js b/packages/node_modules/@node-red/runtime/lib/api/nodes.js @@ -176,13 +176,6 @@ var api = module.exports = {
err.status = 400;
return reject(err);
}
- if (!existingModule.local) {
- runtime.log.audit({event: "nodes.install",module:opts.module, versio... | 2 |
diff --git a/lib/routes/polimi/news.js b/lib/routes/polimi/news.js const buildData = require('@/utils/common-config');
-const queryString = require('query-string');
module.exports = async (ctx) => {
let link = `https://www.polimi.it/tutte-le-news/`;
@@ -10,9 +9,9 @@ module.exports = async (ctx) => {
link,
url: link,
ti... | 1 |
diff --git a/apps.json b/apps.json "shortName": "Pastel",
"icon": "pastel.png",
"version":"0.01",
- "description": "A nixie tube clock for both Bangle 1 and 2.",
+ "description": "A Configurable clock with custom fonts and background",
"tags": "clock b2",
"type":"clock",
"readme": "README.md",
| 3 |
diff --git a/spec/models/carto/visualization_spec.rb b/spec/models/carto/visualization_spec.rb @@ -30,7 +30,7 @@ describe Carto::Visualization do
it_behaves_like 'visualization models' do
def build_visualization(attrs = {})
- v = Carto::Visualization.new(attrs)
+ v = Carto::Visualization.new
v.assign_attributes(attrs, ... | 2 |
diff --git a/docs/sphinx_greenlight_instructions.md b/docs/sphinx_greenlight_instructions.md ## Getting Started
-1. Flash our installer onto your raspberry pi using your preferred method. We like to use balena echer, which you can download [here](https://www.balena.io/etcher/).
+1. Flash our installer onto your raspber... | 0 |
diff --git a/src/components/growl/Growl.js b/src/components/growl/Growl.js @@ -98,7 +98,7 @@ export class Growl extends Component {
<ReactCSSTransitionGroup
transitionName="ui-growl"
transitionEnterTimeout={250}
- transitionLeaveTimeout={50000}>
+ transitionLeaveTimeout={500}>
{messages}
</ReactCSSTransitionGroup>
</di... | 12 |
diff --git a/js/binance.js b/js/binance.js @@ -821,6 +821,16 @@ module.exports = class binance extends ccxt.binance {
}
}
+ setBalanceCache (type) {
+ const options = this.safeValue (this.options, 'watchBalance');
+ const fetchBalanceSnapshot = this.safeValue (options, 'fetchBalanceSnapshot', false);
+ if (fetchBalance... | 12 |
diff --git a/addon/components/base/bs-nav.js b/addon/components/base/bs-nav.js @@ -28,9 +28,9 @@ import layout from 'ember-bootstrap/templates/components/bs-nav';
</BsNav>
```
- > Note: the use of angle brackets `<nav.linkTo>` as shown above is only supported for Ember 3.10, as it relies on its
- > own native implement... | 7 |
diff --git a/src/parser/character/token.js b/src/parser/character/token.js import { getSensesLookup } from "./senses.js";
import logger from "../../logger.js";
-function getTokenSenses(data) {
+function getTokenSenses(ddb, character) {
// Default to the most basic token setup.
// everything else can be handled by the u... | 7 |
diff --git a/src/components/bank/Features.js b/src/components/bank/Features.js @@ -115,7 +115,7 @@ export default () => (
<Base pt={[5, 6, 7]} pb={[4, 5, 6]} color="snow">
<Modules px={3}>
<Box>
- <Headline>A powerful toolkit for organizing.</Headline>
+ <Headline>Invoice sponsors, issue debit cards to your team, and v... | 7 |
diff --git a/core/block.js b/core/block.js @@ -1947,12 +1947,10 @@ Blockly.Blocks['pair_first_typed'] = {
this.setColour(210);
var A = Blockly.TypeVar.getUnusedTypeVar();
var B = Blockly.TypeVar.getUnusedTypeVar();
+ var pair_t = new Blockly.TypeExpr ("pair", [A, B]);
this.appendValueInput('FIRST')
- .setTypeExpr(A)
+ ... | 1 |
diff --git a/src/components/screens/ChapterScreen/LanguageMenu/FrameworkMenu.js b/src/components/screens/ChapterScreen/LanguageMenu/FrameworkMenu.js @@ -139,7 +139,18 @@ const FrameworkMenu = ({
[translationPages]
);
// in the future ue another metric for popularity
- const frameworksByPopularity = ['react', 'react-nat... | 3 |
diff --git a/src/dom_components/view/ComponentImageView.js b/src/dom_components/view/ComponentImageView.js -var Backbone = require('backbone');
+import { isString } from 'underscore';
var ComponentView = require('./ComponentView');
module.exports = ComponentView.extend({
@@ -36,7 +36,7 @@ module.exports = ComponentView... | 11 |
diff --git a/apps/chimer/settings.js b/apps/chimer/settings.js },
"Start Hour": {
value: settings.start,
- min: 1,
- max: 24,
+ min: 0,
+ max: 23,
format: (v) => v,
onchange: (v) => {
settings.start = v;
| 3 |
diff --git a/test/image/export_test.js b/test/image/export_test.js @@ -19,7 +19,8 @@ var FORMATS = ['svg', 'pdf', 'eps'];
// non-exhaustive list of mocks to test
var DEFAULT_LIST = [
- '0', 'geo_first', 'gl3d_z-range', 'text_export', 'layout_image', 'gl2d_12'
+ '0', 'geo_first', 'gl3d_z-range', 'text_export', 'layout_i... | 0 |
diff --git a/app/classifier/drawing-tools/freehand-line.cjsx b/app/classifier/drawing-tools/freehand-line.cjsx @@ -66,7 +66,7 @@ module.exports = React.createClass
{if @props.selected
deletePosition = @getDeletePosition points
- <g>
+ <g pointerEvents="fill">
<DeleteButton tool={this}
x={deletePosition.x}
y={deletePosi... | 12 |
diff --git a/test/common.js b/test/common.js @@ -154,7 +154,7 @@ module.exports.createPool = function(callback) {
module.exports.createConnectionWithURI = function(callback) {
var driver = require('../index.js');
- return driver.createConnection(configURI);
+ return driver.createConnection({ uri: configURI });
};
modul... | 1 |
diff --git a/docs/common/changelog.md b/docs/common/changelog.md @@ -9,6 +9,19 @@ this will be evened out from v24
- Upgrade rnkiwimobile to version `0.0.46`
+### v44
+
+- Toast returns null when `this.state.isVisible` is false. It worked on ios, but on android filter stripe became unclickable
+
+### v43
+
+- Add zInde... | 0 |
diff --git a/Source/Core/CircleOutlineGeometry.js b/Source/Core/CircleOutlineGeometry.js /*global define*/
define([
'./Cartesian3',
+ './Check',
'./defaultValue',
'./defined',
'./DeveloperError',
@@ -8,6 +9,7 @@ define([
'./Ellipsoid'
], function(
Cartesian3,
+ Check,
defaultValue,
defined,
DeveloperError,
@@ -49,9 +51... | 14 |
diff --git a/components/Pledge/Merci.js b/components/Pledge/Merci.js @@ -262,7 +262,7 @@ class Merci extends Component {
}
const buttonStyle = { marginBottom: 10, marginRight: 10 }
- const noNameSuffix = me ? '' : '/noName'
+ const noNameSuffix = me?.name ? '' : '/noName'
const paragraphs = t
.first([
@@ -284,7 +284,7 ... | 7 |
diff --git a/tools/make/lib/node/npm.mk b/tools/make/lib/node/npm.mk #
# This target runs tasks which should be completed before incrementing the project version.
-preversion: dedupe-node-modules
+pre-version: dedupe-node-modules
-.PHONY: preversion
+.PHONY: pre-version
# Run post-version tasks.
#
# This target runs ta... | 10 |
diff --git a/src/reducers/allAccounts.js b/src/reducers/allAccounts.js @@ -37,6 +37,22 @@ const allAccountsReducer = handleActions({
}
}
},
+ [updateStakingLockup]: (state, { error, meta, payload, ready }) => {
+ if (!ready || error) {
+ return state
+ }
+
+ return {
+ ...state,
+ [meta.accountId]: {
+ ...state[meta.ac... | 9 |
diff --git a/articles/support/index.md b/articles/support/index.md @@ -141,3 +141,29 @@ Standard Support: 24/5 | Enterprise and Preferred Support: 24/7/265
Every effort will be made to respond sooner than the times listed above. However, some types of problems such as development issues that require us to install softw... | 0 |
diff --git a/src/components/inspectors/LoopCharacteristics.vue b/src/components/inspectors/LoopCharacteristics.vue loopType === 'sequential_mi'
"
>
- <b-form-group :label="$t('Type')">
- <b-form-radio
- v-model="multiType"
- name="multiType-radio"
- value="loopCardinality"
- @change="changeMultiType"
- >Numeric Express... | 2 |
diff --git a/token-metadata/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/metadata.json b/token-metadata/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/metadata.json "symbol": "CHART",
"address": "0x1d37986F252d0e349522EA6C3B98Cb935495E63E",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/edit.js b/edit.js @@ -9,7 +9,7 @@ import {tryLogin, loginManager} from './login.js';
import runtime from './runtime.js';
import {parseQuery, downloadFile} from './util.js';
import {rigManager} from './rig.js';
-import {makeRayMesh} from './vr-ui.js';
+// import {makeRayMesh} from './vr-ui.js';
import {
THI... | 2 |
diff --git a/client/pages/NewEvent.js b/client/pages/NewEvent.js @@ -422,7 +422,7 @@ class NewEvent extends React.Component {
<div id="timeSlider" />
<br />
<p className="center">
- From {this.state.selectedTimeRange[0]} to {this.state.selectedTimeRange[1]}
+ No earlier than {this.state.selectedTimeRange[0]} and no lat... | 1 |
diff --git a/lambda_permissions.go b/lambda_permissions.go @@ -940,7 +940,6 @@ func (rule EventBridgeRule) MarshalJSON() ([]byte, error) {
////////////////////////////////////////////////////////////////////////////////
// START - EventBridgePermission
//
-var eventBridgeSourceArnParts = []gocf.Stringable{}
// EventBri... | 2 |
diff --git a/js/templates/modals/orderDetail/summaryTab/orderDetails.html b/js/templates/modals/orderDetail/summaryTab/orderDetails.html +<% console.log('boom'); window.boom = ob %>
<%
if (ob.order.shipping) {
var addressLine3 = `${ob.order.shipping.city ? `${ob.order.shipping.city}${ob.order.shipping.state ? ',' : ''}... | 9 |
diff --git a/samples/csharp_dotnetcore/11.qnamaker/README.md b/samples/csharp_dotnetcore/11.qnamaker/README.md @@ -23,10 +23,10 @@ QnA Maker CLI to deploy the model.
- Clone the repository
```bash
- git clone https://github.com/microsoft/botbuilder-samples.git
+ git clone https://github.com/Microsoft/botbuilder-samples... | 3 |
diff --git a/contracts/ExchangeRates.sol b/contracts/ExchangeRates.sol @@ -422,13 +422,13 @@ contract ExchangeRates is SelfDestructible {
view
returns (uint[])
{
- uint[] memory _localRates = new uint[](currencyKeys.length);
+ uint[] memory _rates = new uint[](currencyKeys.length);
for (uint i = 0; i < currencyKeys.len... | 3 |
diff --git a/README.md b/README.md @@ -29,7 +29,7 @@ var fs = require('fs')
// paths:
var pathToDB = './db'
var pathToSecret = './ssb-identity'
-fs.mkdirSync(pathToDB)
+try { fs.mkdirSync(pathToDB) } catch(e) {}
// ways to create keys:
//var keys = require('ssb-keys').generate()
| 8 |
diff --git a/src/components/graph/drawPointsRegl.js b/src/components/graph/drawPointsRegl.js @@ -39,13 +39,7 @@ export default function(regl) {
distance: regl.prop("distance"),
view: regl.prop("view"),
projection: (context, props) => {
- return mat4.perspective(
- [],
- Math.PI / 2,
- context.viewportWidth * props.scal... | 14 |
diff --git a/CHANGELOG.md b/CHANGELOG.md All notable changes to this project are documented in this file.
-## Head
+## 13.12.0
- Added: `named-grid-areas-no-invalid` rule ([#5167](https://github.com/stylelint/stylelint/pull/5167)).
- Added: `ignore: ["single-declaration"]` to `declaration-block-trailing-semicolon` ([#5... | 6 |
diff --git a/package-lock.json b/package-lock.json "uniq": "1.0.1"
}
},
+ "gl-streamtube3d": {
+ "version": "git+ssh://git@github.com/gl-vis/gl-streamtube3d.git#076b0a6e86ccd1f00be6a9635eccfd4744acccbb",
+ "requires": {
+ "gl-vec3": "1.0.3",
+ "glsl-inverse": "1.0.0",
+ "glslify": "2.3.1"
+ },
+ "dependencies": {
+ "bl... | 0 |
diff --git a/server/caas/api.js b/server/caas/api.js @@ -65,7 +65,8 @@ module.exports = function(app/*, options*/) {
});
app.use('/register-new', function(req, res) {
- if (checkExistingAccount(req.body.email)) {
+ checkExistingAccount(req.body.email, function(exists) {
+ if (exists) {
return generateError('exists', 'A... | 2 |
diff --git a/app/zcommon.js b/app/zcommon.js @@ -133,20 +133,6 @@ function showSettingsDialog() {
});
}
-function loadLangFile() {
- let jsElem = document.createElement("script");
- jsElem.type = "application/javascript";
-
- jsElem.src = "lang/lang_en.js";
- /*
- if (settings.hasOwnProperty("lang")) {
- jsElem.src = "... | 13 |
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -44,7 +44,7 @@ yarn add vue@latest
## Tests
-We recommend running all tests before you submit a PR.
+We recommend running all tests before you submit a PR. Tests will not work unless you have run a build `yarn build`.
### Running tests
| 0 |
diff --git a/token-metadata/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/metadata.json b/token-metadata/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/metadata.json "symbol": "CHSB",
"address": "0xba9d4199faB4f26eFE3551D490E3821486f135Ba",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/examples/hello_ml.html b/examples/hello_ml.html for (let i = 0; i < hands.length; i++) {
const hand = hands[i];
- const {fingers} = hand;
- for (let j = 0; j < fingers.length; j++) {
- const bones = fingers[j];
+ const {pointer, grip, wrist, fingers} = hand;
+ const allFingers = [wrist].concat(fingers);
+ ... | 4 |
diff --git a/lib/profile/targets.js b/lib/profile/targets.js @@ -47,6 +47,9 @@ function lookup (inputs, profile) {
//console.error(temptargets_data[i]);
tempTargets = bgTargets;
break;
+ } else if (! temptargets_data[i].targetBottom || ! temptargets_data[i].targetTop) {
+ console.error("eventualBG target range invalid:... | 8 |
diff --git a/lib/impress.application.js b/lib/impress.application.js @@ -127,7 +127,6 @@ impress.application.mixin = (application) => {
application.cache.scripts.set(key, exports);
return exports;
} catch (err) {
- err.stack = err.toString() + ' in ' + scriptName;
application.logException(err);
return null;
}
| 1 |
diff --git a/demos/generator/typed.html b/demos/generator/typed.html <block type="lambda_typed"></block>
<block type="lambda_app_typed"></block>
<block type="match_typed"></block>
- <block type="empty_construct_pattern_typed"></block>
- <block type="cons_construct_pattern_typed"></block>
<block type="defined_datatype_t... | 2 |
diff --git a/src/technologies/e.json b/src/technologies/e.json "js": {
"smileTracker": ""
},
+ "html": [
+ "<input [^>]*Smile_Elasticsuite[^>]*>",
+ "<[\\S\\s.*]*Smile_Elasticsuite[\\S\\s.*]*>"
+ ],
"scriptSrc": "Smile_ElasticsuiteTracker/js/tracking\\.js",
"oss": true,
- "saas": true,
"pricing": [
"poa"
],
| 7 |
diff --git a/lib/shared/addon/utils/amazon.js b/lib/shared/addon/utils/amazon.js @@ -679,7 +679,7 @@ export const EKS_REGIONS = [
];
// from https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
-export const EKS_VERSIONS = ['1.21', '1.20', '1.19', '1.18', '1.17', '1.16', '1.15']; // sort newest->ol... | 2 |
diff --git a/apiserver/apiserver/web/views.py b/apiserver/apiserver/web/views.py @@ -913,9 +913,16 @@ def get_match_replay(intended_user, match_id):
buffer = io.BytesIO()
blob.download_to_file(buffer)
buffer.seek(0)
- return flask.send_file(buffer, mimetype="application/x-halite-2-replay",
+ response = flask.make_respo... | 12 |
diff --git a/token-metadata/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/metadata.json b/token-metadata/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/metadata.json "symbol": "DIA",
"address": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -21,11 +21,15 @@ Please document your changes in this format:
```
## [Unreleased]
+### Added
+- Add ability to specify pickups with end times #709 @nicksellen
+
+### Changed
+- Allow non-collectors to read and write in pickup chat @tiltec
## [6.5.0] - 2019-02-03
### Added
- C... | 3 |
diff --git a/edit.js b/edit.js @@ -9,6 +9,7 @@ import {XRPackage, pe, renderer, scene, camera, floorMesh, proxySession, getReal
import {downloadFile, readFile, bindUploadFileButton} from 'https://static.xrpackage.org/xrpackage/util.js';
import {wireframeMaterial, getWireframeMesh, meshIdToArray, decorateRaycastMesh, Vo... | 0 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,53 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.40.0] -- 2018-08-16
+
+### Added
+- Allow `contour`, `contourcarpet` and `histogram2dcontour` to have
+ corresponding legend items us... | 3 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.36.1",
+ "version": "0.37.0",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/views/email/forgot_password.hbs b/views/email/forgot_password.hbs @@ -19,7 +19,7 @@ password for you.</p>
</p>
<p>
- Alternatively copy and paste to your browser following link: <pre>https://{{ concatenate (get_application_domain) '/reset-password/?t=' (this.get_reset_password_token) }}</pre>
+ Alternative... | 1 |
diff --git a/packages/growi-plugin-lsx/package.json b/packages/growi-plugin-lsx/package.json "scripts": {
"build": "babel src --out-dir lib --source-maps inline",
"clean": "npm cache clean && npm run rimraf -- lib",
- "postbuild": "ncp src/resource/css lib/resource/css",
- "prebuild": "npm run clean",
+ "resources": "m... | 7 |
diff --git a/data/kitchen-sink/manuscript.xml b/data/kitchen-sink/manuscript.xml @@ -329,10 +329,10 @@ class Reader(fname: String) {
</sec>
<sec id="sec-3">
<title>Supplementary Files</title>
- <supplementary-material id="sm-1" content-type="source-data" mimetype="application" mime-sub-type="zip" xlink:href="example.zi... | 7 |
diff --git a/packages/webpack-plugin/lib/json-compiler/index.js b/packages/webpack-plugin/lib/json-compiler/index.js @@ -402,10 +402,10 @@ module.exports = function (raw) {
if (json.tabBar && json.tabBar[itemKey]) {
json.tabBar[itemKey].forEach((item, index) => {
- if (item.iconPath) {
+ if (item[iconKey]) {
output += ... | 1 |
diff --git a/script/ci/cloudbuild-tests-pr-pg12.yaml b/script/ci/cloudbuild-tests-pr-pg12.yaml @@ -88,7 +88,7 @@ steps:
timeout: 900s
- name: gcr.io/cloud-builders/docker
- args: ['exec', '-i', 'builder_1', 'bash', '-c', '/cartodb/runParallelTests.sh 24' ]
+ args: ['exec', '-i', 'builder_1', 'bash', '-c', '/cartodb/run... | 4 |
diff --git a/packages/app/src/components/Admin/SlackIntegration/ManageCommandsProcess.jsx b/packages/app/src/components/Admin/SlackIntegration/ManageCommandsProcess.jsx @@ -19,6 +19,39 @@ const CommandUsageTypes = {
SINGLE_USE: 'singleUse',
};
+// A utility function that returns the new state
+const getUpdatedChannelsL... | 5 |
diff --git a/src/og/Globe.js b/src/og/Globe.js @@ -211,7 +211,6 @@ class Globe {
minSlope: options.minSlope
}),
new TouchNavigation(),
- new KeyboardNavigation(),
new EarthCoordinates(),
new ScaleControl(),
new CompassButton(options)
| 2 |
diff --git a/server/utils/permissions.js b/server/utils/permissions.js const isAdmin = (id: string) => {
const admins = [
- 'ce2b4488-4c75-47e0-8ebc-2539c1e6a190',
+ 'gVk5mYwccUOEKiN5vtOouqroGKo1',
'lYh3iULMUyZ7zIzmqnjdktFDZCG3',
'uItS3QQiUxXH44m14uWmixTbqSc2',
];
| 1 |
diff --git a/test/jasmine/assets/mock_lists.js b/test/jasmine/assets/mock_lists.js @@ -21,6 +21,7 @@ var svgMockList = [
['geo_first', require('@mocks/geo_first.json')],
['layout_image', require('@mocks/layout_image.json')],
['layout-colorway', require('@mocks/layout-colorway.json')],
+ ['multicategory', require('@mock... | 0 |
diff --git a/app/components/new-secret/component.js b/app/components/new-secret/component.js @@ -6,7 +6,7 @@ export default Ember.Component.extend(NewOrEdit, {
userValue: '',
userValueChanged: Ember.observer('userValue', function() {
- this.set('primaryResource.value', btoa(this.get('userValue')));
+ this.set('primaryR... | 2 |
diff --git a/js/huobi.js b/js/huobi.js @@ -1560,12 +1560,15 @@ module.exports = class huobi extends Exchange {
let amountPrecision = undefined;
let costPrecision = undefined;
if (spot) {
- pricePrecision = this.parseNumber (this.parsePrecision (this.safeString (market, 'price-precision')));
- amountPrecision = this.par... | 13 |
diff --git a/src/lib/hooks/useSideMenu.js b/src/lib/hooks/useSideMenu.js @@ -10,7 +10,7 @@ import { hideSidemenu, showSidemenu, toggleSidemenu } from '../undux/utils/sidem
import { useWrappedApi } from '../API/useWrappedApi'
import { CLICK_DELETE_WALLET, fireEvent, LOGOUT } from '../../lib/analytics/analytics'
-import ... | 1 |
diff --git a/token-metadata/0xd0F12A5D6D74c92E0600ce4274AC19Ec6E7fE6AE/metadata.json b/token-metadata/0xd0F12A5D6D74c92E0600ce4274AC19Ec6E7fE6AE/metadata.json "symbol": "TAUC",
"address": "0xd0F12A5D6D74c92E0600ce4274AC19Ec6E7fE6AE",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/app/components/Send/SendPanel/SendRecipientList/SendRecipientListItem/index.jsx b/app/components/Send/SendPanel/SendRecipientList/SendRecipientListItem/index.jsx @@ -36,7 +36,7 @@ type State = {
class SendRecipientListItem extends Component<Props, State> {
state = { nnsError: '', isNnsResolving: false }
- ... | 3 |
diff --git a/base/tile_events/StepEvent.ts b/base/tile_events/StepEvent.ts @@ -51,14 +51,13 @@ export class StepEvent extends TileEvent {
fire() {
if (this.data.hero.tile_x_pos === this.next_x && this.data.hero.tile_y_pos === this.next_y) {
this.data.tile_event_manager.unset_triggered_event(this);
- if (this.shift_y > ... | 7 |
diff --git a/index.js b/index.js @@ -134,7 +134,7 @@ const middy = (handler) => {
return instance
}
- instance._middlewares = {
+ instance.__middlewares = {
before: beforeMiddlewares,
after: afterMiddlewares,
onError: errorMiddlewares
| 10 |
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-footer/sprk-footer.component.ts b/angular/projects/spark-angular/src/lib/components/sprk-footer/sprk-footer.component.ts @@ -274,7 +274,7 @@ export class SprkFooterComponent {
connectHeading: string;
/**
* Array of
- * [ISprkFooterGlobalLink](https://g... | 1 |
diff --git a/data.js b/data.js @@ -5334,12 +5334,12 @@ module.exports = [{
source: "https://raw.githubusercontent.com/tiaanduplessis/dont-go/master/lib/dont-go.js"
},
{
- name: "Storage.js",
- github: "lcavadas/Storage.js",
+ name: "Browser Storage JS",
+ github: "lcavadas/browser-storage-js",
tags: ["IndexedDB", "WebS... | 3 |
diff --git a/editor/js/vendor/ckeditor/plugins/xotrecorder/dialogs/xotrecorder.js b/editor/js/vendor/ckeditor/plugins/xotrecorder/dialogs/xotrecorder.js __log("Format: 2 channel " + getElementById('encodingTypeSelect').getValue() + ' @ ' + audioContext.sampleRate/1000 + 'kHz');
gumStream = stream;
input = audioContext.... | 1 |
diff --git a/package.json b/package.json "lint": "npm run eslint && npm run ejs-lint",
"lint-fix": "npm run prettier:format && npm run eslint -- --fix",
"eslint": "eslint .",
- "ejs-lint": "npm run test:unit -- test/ejslint.js",
+ "ejs-lint": "mocha test/ejslint.js",
"ejslint": "ejslint",
"pretest": "npm run lint",
"te... | 2 |
diff --git a/public/rich-text-editor.css b/public/rich-text-editor.css .rich-text-editor .mq-editable-field.mq-focused,
.rich-text-editor textarea:focus { box-shadow: none; outline: 1px solid #359BB7; z-index:2;}
.rich-text-editor img { max-width: 100%; max-height: 1000px; }
+.rich-text-editor { max-height: 200px; over... | 12 |
diff --git a/generators/server/templates/src/main/java/package/config/MicroserviceSecurityConfiguration.java.ejs b/generators/server/templates/src/main/java/package/config/MicroserviceSecurityConfiguration.java.ejs @@ -119,14 +119,14 @@ import org.springframework.web.client.RestTemplate;
@Configuration
@EnableResourceS... | 10 |
diff --git a/tests/e2e/specs/auth-client-configuration.test.js b/tests/e2e/specs/auth-client-configuration.test.js /**
* WordPress dependencies
*/
-import { activatePlugin, deactivatePlugin, visitAdminPage } from '@wordpress/e2e-test-utils';
+import { visitAdminPage } from '@wordpress/e2e-test-utils';
describe( 'Provid... | 2 |
diff --git a/test/tests.js b/test/tests.js @@ -12,7 +12,6 @@ describe('math editor', () => {
describe('focus state', () => {
before(() => {
$('.answer1').focus()
- $('.answer1').focus() // TODO why two calls is necessary?
})
before(waitUntil(() => $('[data-js="tools"]').is(':visible')))
| 2 |
diff --git a/packages/cx/src/widgets/form/LookupField.js b/packages/cx/src/widgets/form/LookupField.js @@ -232,6 +232,7 @@ LookupField.prototype.sort = false;
LookupField.prototype.listOptions = null;
LookupField.prototype.autoOpen = false;
LookupField.prototype.submitOnEnterKey = false;
+ LookupField.prototype.submitO... | 0 |
diff --git a/.travis.yml b/.travis.yml @@ -23,7 +23,7 @@ before_script:
script:
- yarn test:nowatch
- - yarn eslint --max-warnings 113 || (echo ERROR New eslint errors were introduced by these changes && exit 1)
+ - yarn eslint --max-warnings 114 || (echo ERROR New eslint errors were introduced by these changes && exit... | 12 |
diff --git a/src/BackpackServiceProvider.php b/src/BackpackServiceProvider.php @@ -65,7 +65,7 @@ class BackpackServiceProvider extends ServiceProvider
return new CrudPanel();
});
- $this->app->singleton('CrudPanelViewNamespaces', function ($app) {
+ $this->app->singleton('BackpackViewNamespaces', function ($app) {
retu... | 10 |
diff --git a/diorama.js b/diorama.js @@ -1604,8 +1604,6 @@ const createPlayerDiorama = (player, {
width: 0,
height: 0,
enabled: true,
- loadingTriggered: false,
- loaded: false,
addCanvas(canvas) {
const {width, height} = canvas;
this.width = Math.max(this.width, width);
@@ -1633,8 +1631,6 @@ const createPlayerDiorama ... | 0 |
diff --git a/articles/email/index.md b/articles/email/index.md @@ -24,4 +24,8 @@ To remove these restrictions in your testing or to setup your production level e
* [Use your own SMTP Email Provider](/email/providers)
* [Custom Email Handling](/email/custom)
-After you have configured your own email service provider, th... | 0 |
diff --git a/clients/python-client/README.md b/clients/python-client/README.md Provides a python interface to the Parsr tool via its API.
Parsr transforms PDF, documents and images into enriched, structured data.
-Find out all about Parsr (including download) at [http://par.sr](http://par.sr).
+Find out all about Parsr... | 3 |
diff --git a/src/actions/Dialog.js b/src/actions/Dialog.js @@ -195,7 +195,7 @@ export class Dialog extends Action {
document.querySelector ('[data-ui="who"]').innerHTML = '';
- delete this.engine.element ().find ('[data-component="text-box"]').get (0).dataset.expression;
+ this.engine.element ().find ('[data-component=... | 4 |
diff --git a/CHANGES.md b/CHANGES.md Change Log
==========
+### 1.39 - 2017-11-01
+
+* Added function that inserts missing namespace declarations into KML files. [#5860](https://github.com/AnalyticalGraphicsInc/cesium/pull/5860)
+
### 1.38 - 2017-10-02
* Breaking changes
@@ -18,7 +22,6 @@ Change Log
* Fixed a 3D Tiles ... | 3 |
diff --git a/package.json b/package.json "test": "node test/test",
"build": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets es2015,stage-2; webpack",
"tagbuild": "VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]');npm run build;git add -A; gi... | 4 |
diff --git a/views/layout/default.blade.php b/views/layout/default.blade.php @@ -122,7 +122,7 @@ $userSettings['night_mode_enabled_internal'] = false;
}
@endphp
-<body class="fixed-nav @if(boolval($userSettings['night_mode_enabled_internal']) || (boolval($userSettings['auto_night_mode_enabled']) && boolval($userSetting... | 2 |
diff --git a/articles/appliance/dashboard/settings.md b/articles/appliance/dashboard/settings.md @@ -94,10 +94,6 @@ When providing time values to Auth0, please use the following abbreviations to e
* **Update Proxy**: unless your specific configuration is set up for offline updates, please leave this field blank.
-## Mo... | 2 |
diff --git a/content/code-signing/android-code-signing.md b/content/code-signing/android-code-signing.md @@ -29,7 +29,7 @@ As a keystore can hold multiple keys, each key in it must have an **alias**. Bot
You can create a keystore for signing your release builds with the Java Keytool utility by running the following com... | 3 |
diff --git a/packages/renderer/src/Renderer.js b/packages/renderer/src/Renderer.js @@ -28,6 +28,7 @@ import createUpdateBlock from './page/block/updateBlock';
// eslint-disable-next-line no-undef
const windowContext = window;
+windowContext.displayMessage = () => () => undefined;
// eslint-disable-next-line no-undef
co... | 1 |
diff --git a/src/matrix/room/timeline/Timeline.js b/src/matrix/room/timeline/Timeline.js @@ -233,7 +233,7 @@ export class Timeline {
this._contextEntriesNotInTimeline.set(entry.id, entry);
}
// Since this entry changed, all dependent entries should be updated
- entry.contextForEntries?.forEach(e => this._updateEntry(e)... | 10 |
diff --git a/lib/models/revision.js b/lib/models/revision.js @@ -12,7 +12,7 @@ module.exports = function(crowi) {
body: { type: String, required: true, get: (data) => {
// replace CR/CRLF to LF above v3.1.5
// see https://github.com/weseek/growi/issues/463
- return data.replace(/\r\n?/g, '\n');
+ return data && data.re... | 11 |
diff --git a/src/components/EditableField/EditableField.tsx b/src/components/EditableField/EditableField.tsx @@ -337,7 +337,8 @@ export class EditableField extends React.Component<
name: changedField.id,
value: changedField.value,
values: updatedFieldValue,
- }).then(validation => {
+ })
+ .then(validation => {
// Sinc... | 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.